From: Rasmus Villemoes Date: Thu, 28 Nov 2019 14:55:52 +0000 (+0100) Subject: net: ethernet: freescale: make UCC_GETH explicitly depend on PPC32 X-Git-Tag: v5.10.7~3250^2~7^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=114724b782816c2795e19f1730bdf7cae786251e;p=platform%2Fkernel%2Flinux-rpi.git net: ethernet: freescale: make UCC_GETH explicitly depend on PPC32 Currently, QUICC_ENGINE depends on PPC32, so this in itself does not change anything. In order to allow removing the PPC32 dependency from QUICC_ENGINE and avoid allmodconfig build failures, add this explicit dependency. Also, the QE Ethernet has never been integrated on any non-PowerPC SoC and most likely will not be in the future. Reviewed-by: Timur Tabi Signed-off-by: Rasmus Villemoes Acked-by: David S. Miller Signed-off-by: Li Yang --- diff --git a/drivers/net/ethernet/freescale/Kconfig b/drivers/net/ethernet/freescale/Kconfig index 6a7e899..2bd7ace 100644 --- a/drivers/net/ethernet/freescale/Kconfig +++ b/drivers/net/ethernet/freescale/Kconfig @@ -74,7 +74,7 @@ config FSL_XGMAC_MDIO config UCC_GETH tristate "Freescale QE Gigabit Ethernet" - depends on QUICC_ENGINE + depends on QUICC_ENGINE && PPC32 select FSL_PQ_MDIO select PHYLIB ---help---