From: Arnd Bergmann Date: Sat, 10 Dec 2016 10:38:32 +0000 (+0100) Subject: net: mvneta: select GENERIC_ALLOCATOR X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=0e85663b887aa7c87d64965952fbf436c209fbe4;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git net: mvneta: select GENERIC_ALLOCATOR We previously relied on GENERIC_ALLOCATOR to be selected by CONFIG_ARM, but now we can compile-test the driver on other architectures that don't select it: drivers/net/built-in.o: In function `mvneta_bm_remove': mvneta_bm.c:(.text+0x4ee35): undefined reference to `gen_pool_free' This adds an explicit select for the part of the driver that has the dependency. Fixes: a0627f776a45 ("net: marvell: Allow drivers to be built with COMPILE_TEST") Signed-off-by: Arnd Bergmann Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/marvell/Kconfig b/drivers/net/ethernet/marvell/Kconfig index 3b8f11fe5e13..f4b7cf18fb0f 100644 --- a/drivers/net/ethernet/marvell/Kconfig +++ b/drivers/net/ethernet/marvell/Kconfig @@ -76,6 +76,7 @@ config MVNETA_BM default y if MVNETA=y && MVNETA_BM_ENABLE!=n default MVNETA_BM_ENABLE select HWBM + select GENERIC_ALLOCATOR help MVNETA_BM must not be 'm' if MVNETA=y, so this symbol ensures that all dependencies are met.