mirror of https://github.com/torvalds/linux.git
Kernel bot has discovered that if CONFIG_GPIOLIB is not set compilation
will fail.
Upon investigation the issue is that qca807x_gpio() is guarded by a
preprocessor check but then it is called under
if (IS_ENABLED(CONFIG_GPIOLIB)) in the probe call so the compiler will
error out since qca807x_gpio() has not been declared if CONFIG_GPIOLIB has
not been set.
Fixes:
|
||
|---|---|---|
| .. | ||
| Kconfig | ||
| Makefile | ||
| at803x.c | ||
| qca83xx.c | ||
| qca807x.c | ||
| qca808x.c | ||
| qcom-phy-lib.c | ||
| qcom.h | ||