]> git.baikalelectronics.ru Git - kernel.git/commit
net: lan966x: Fix compilation error
authorHoratiu Vultur <horatiu.vultur@microchip.com>
Fri, 29 Apr 2022 07:19:53 +0000 (09:19 +0200)
committerDavid S. Miller <davem@davemloft.net>
Sat, 30 Apr 2022 14:20:18 +0000 (15:20 +0100)
commit126622bae3ebc41a6b676aaf13b0e05b6bb10d39
treebd1d9586a16a50b18fb4a481ebfdacfb203c2749
parent483a5b816a8a6ebfc907ae6cdd7da38d942fc1bc
net: lan966x: Fix compilation error

Starting from the blamed commit, the lan966x build fails with the
following compilation error:

drivers/net/ethernet/microchip/lan966x/lan966x_ptp.c:342:9: error: implicit declaration of function ‘ptp_find_pin_unlocked’ [-Werror=implicit-function-declaration]
  342 |   pin = ptp_find_pin_unlocked(phc->clock, PTP_PF_EXTTS, 0);

The issue is that there is no stub function for ptp_find_pin_unlocked
in case CONFIG_PTP_1588_CLOCK is not selected. Therefore add one.

Reported-by: kernel test robot <lkp@intel.com>
Fixes: ecff90622fe14c ("net: lan966x: Add support for PTP_PF_EXTTS")
Signed-off-by: Horatiu Vultur <horatiu.vultur@microchip.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/ptp_clock_kernel.h