diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2021-08-13 20:33:27 +0300 |
---|---|---|
committer | Sasha Levin <sashal@kernel.org> | 2021-08-26 08:37:09 -0400 |
commit | c075da320684a0387d96f9bd13db822c2c58d18e (patch) | |
tree | a6f2d7dcbf21d1d92ca07fdab195640812117036 | |
parent | 5e0e782874ad03ae6d47d3e55aff378da0b51104 (diff) | |
download | linux-stable-c075da320684a0387d96f9bd13db822c2c58d18e.tar.gz linux-stable-c075da320684a0387d96f9bd13db822c2c58d18e.tar.bz2 linux-stable-c075da320684a0387d96f9bd13db822c2c58d18e.zip |
ptp_pch: Restore dependency on PCI
[ Upstream commit 55c8fca1dae1fb0d11deaa21b65a647dedb1bc50 ]
During the swap dependency on PCH_GBE to selection PTP_1588_CLOCK_PCH
incidentally dropped the implicit dependency on the PCI. Restore it.
Fixes: 18d359ceb044 ("pch_gbe, ptp_pch: Fix the dependency direction between these drivers")
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
-rw-r--r-- | drivers/ptp/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/ptp/Kconfig b/drivers/ptp/Kconfig index a21ad10d613c..a8b4ca17208d 100644 --- a/drivers/ptp/Kconfig +++ b/drivers/ptp/Kconfig @@ -91,7 +91,8 @@ config DP83640_PHY config PTP_1588_CLOCK_PCH tristate "Intel PCH EG20T as PTP clock" depends on X86_32 || COMPILE_TEST - depends on HAS_IOMEM && NET + depends on HAS_IOMEM && PCI + depends on NET imply PTP_1588_CLOCK help This driver adds support for using the PCH EG20T as a PTP |