Skip to content

Commit 0e808bc

Browse files
Carolyn WybornyJeff Kirsher
authored andcommitted
Kconfig: Fix Kconfig for Intel ixgbe and igb PTP support.
Fix Kconfig file to make sure that PTP and IGB/IXGBE are both either in-kernel or modules, not mixed. Having the build status mixed causes compile errors. Signed-off-by: Carolyn Wyborny <carolyn.wyborny@intel.com> Tested-by: Jeff Pieper <jeffrey.e.pieper@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
1 parent adc0fa4 commit 0e808bc

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

drivers/net/ethernet/intel/Kconfig

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,10 @@ config IGB_DCA
122122

123123
config IGB_PTP
124124
bool "PTP Hardware Clock (PHC)"
125-
default y
126-
depends on IGB && PTP_1588_CLOCK
125+
default n
126+
depends on IGB && EXPERIMENTAL
127+
select PPS
128+
select PTP_1588_CLOCK
127129
---help---
128130
Say Y here if you want to use PTP Hardware Clock (PHC) in the
129131
driver. Only the basic clock operations have been implemented.
@@ -223,7 +225,9 @@ config IXGBE_DCB
223225
config IXGBE_PTP
224226
bool "PTP Clock Support"
225227
default n
226-
depends on IXGBE && PTP_1588_CLOCK
228+
depends on IXGBE && EXPERIMENTAL
229+
select PPS
230+
select PTP_1588_CLOCK
227231
---help---
228232
Say Y here if you want support for 1588 Timestamping with a
229233
PHC device, using the PTP 1588 Clock support. This is

0 commit comments

Comments
 (0)