diff options
author | Shawn Guo <shawn.guo@linaro.org> | 2012-12-17 22:06:44 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-12-18 19:26:18 -0500 |
commit | c1e37ea287979052e3eab441e58da3899a8e2389 (patch) | |
tree | 4b6dee57b6cfe70c6837b6a68e37b63c9703f80b /drivers/net | |
parent | d23e946cb67e5011226bcbd1597a632ac7a48c35 (diff) |
net: fec: forbid FEC_PTP on SoCs that do not support
Beside imx6q, the kernel built from imx_v6_v7_defconfig is also
supposed to be running on other IMX SoCs that do not have the PTP
block. Before fec driver gets fixed to run-time detect target hardware
rather than conditional compiling with #ifdef CONFIG_FEC_PTP, let's
give it a quick fix in Kconfig to forbid FEC_PTP on those IMX SoCs that
do not support PTP.
Reported-by: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/ethernet/freescale/Kconfig | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/ethernet/freescale/Kconfig b/drivers/net/ethernet/freescale/Kconfig index 5ba6e1cbd346..ec490d741fc0 100644 --- a/drivers/net/ethernet/freescale/Kconfig +++ b/drivers/net/ethernet/freescale/Kconfig | |||
@@ -94,9 +94,8 @@ config GIANFAR | |||
94 | 94 | ||
95 | config FEC_PTP | 95 | config FEC_PTP |
96 | bool "PTP Hardware Clock (PHC)" | 96 | bool "PTP Hardware Clock (PHC)" |
97 | depends on FEC && ARCH_MXC | 97 | depends on FEC && ARCH_MXC && !SOC_IMX25 && !SOC_IMX27 && !SOC_IMX35 && !SOC_IMX5 |
98 | select PTP_1588_CLOCK | 98 | select PTP_1588_CLOCK |
99 | default y if SOC_IMX6Q | ||
100 | --help--- | 99 | --help--- |
101 | Say Y here if you want to use PTP Hardware Clock (PHC) in the | 100 | Say Y here if you want to use PTP Hardware Clock (PHC) in the |
102 | driver. Only the basic clock operations have been implemented. | 101 | driver. Only the basic clock operations have been implemented. |