Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

arm gpio drivers: make them 'depends on ARM'

We had a few drivers move from arch/arm into drivers/gpio, but they
don't actually compile without the ARM platform headers etc. As a
result they were messing up allyesconfig on x86.

Make them depend on ARM.

Reported-by: Ingo Molnar <mingo@elte.hu>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

+4
+4
drivers/gpio/Kconfig
··· 89 89 config GPIO_EXYNOS4 90 90 bool "Samsung Exynos4 GPIO library support" 91 91 default y if CPU_EXYNOS4210 92 + depends on ARM 92 93 help 93 94 Say yes here to support Samsung Exynos4 series SoCs GPIO library 94 95 95 96 config GPIO_PLAT_SAMSUNG 96 97 bool "Samsung SoCs GPIO library support" 97 98 default y if SAMSUNG_GPIOLIB_4BIT 99 + depends on ARM 98 100 help 99 101 Say yes here to support Samsung SoCs GPIO library 100 102 101 103 config GPIO_S5PC100 102 104 bool "Samsung S5PC100 GPIO library support" 103 105 default y if CPU_S5PC100 106 + depends on ARM 104 107 help 105 108 Say yes here to support Samsung S5PC100 SoCs GPIO library 106 109 107 110 config GPIO_S5PV210 108 111 bool "Samsung S5PV210/S5PC110 GPIO library support" 109 112 default y if CPU_S5PV210 113 + depends on ARM 110 114 help 111 115 Say yes here to support Samsung S5PV210/S5PC110 SoCs GPIO library 112 116