summaryrefslogtreecommitdiffstats
path: root/drivers/net/Kconfig
diff options
context:
space:
mode:
authorGrant Likely2007-11-01 15:22:30 +0100
committerJeff Garzik2007-11-01 21:04:45 +0100
commit644fdf9b08e51e172d54cb500473470edb4ba1e0 (patch)
treef08b214b5772f2281c2f453dbdaf58be0607cf2c /drivers/net/Kconfig
parentKbuild/doc: fix links to Documentation files (diff)
downloadkernel-qcow2-linux-644fdf9b08e51e172d54cb500473470edb4ba1e0.tar.gz
kernel-qcow2-linux-644fdf9b08e51e172d54cb500473470edb4ba1e0.tar.xz
kernel-qcow2-linux-644fdf9b08e51e172d54cb500473470edb4ba1e0.zip
mpc5200: Fix Kconfig dependancies on MPC5200 FEC device driver
When not building an arch/powerpc kernel, the mpc5200 FEC driver depends on some symbols which are not defined (BESTCOMM & BESTCOMM_FEC). This patch flips around the dependancy logic so that it cannot be selected unless BESTCOMM_FEC is selected first. Kconfig stops complaining this way. Also, the driver only works for arch/powerpc (not arch/ppc) anyway so it should depend on PPC_MERGE also. Signed-off-by: Grant Likely <grant.likely@secretlab.ca> Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/Kconfig')
-rw-r--r--drivers/net/Kconfig4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig
index 867cb7345b5f..5f800a6dd978 100644
--- a/drivers/net/Kconfig
+++ b/drivers/net/Kconfig
@@ -1883,9 +1883,7 @@ config FEC2
config FEC_MPC52xx
tristate "MPC52xx FEC driver"
- depends on PPC_MPC52xx
- select PPC_BESTCOMM
- select PPC_BESTCOMM_FEC
+ depends on PPC_MERGE && PPC_MPC52xx && PPC_BESTCOMM_FEC
select CRC32
select PHYLIB
---help---