Skip to content
Commit 1677293e authored by Robert Marko's avatar Robert Marko Committed by Jakub Kicinski
Browse files

net: phy: qca807x: fix compilation when CONFIG_GPIOLIB is not set



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: d1cb613e ("net: phy: qcom: add support for QCA807x PHY Family")
Reported-by: default avatarkernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202403031332.IGAbZzwq-lkp@intel.com/


Signed-off-by: default avatarRobert Marko <robimarko@gmail.com>
Reviewed-by: default avatarSimon Horman <horms@kernel.org>
Tested-by: Simon Horman <horms@kernel.org> # build-tested
Link: https://lore.kernel.org/r/20240305142113.795005-1-robimarko@gmail.com


Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 771d791d
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment