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

gpio: Move the s5pv210 GPIO to drivers/gpio

Move the Samsung s5pv210 SoC GPIO driver to drivers/gpio

Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>

authored by

Kyungmin Park and committed by
Grant Likely
347ec4e4 ab48f161

+8 -1
+1 -1
arch/arm/mach-s5pv210/Makefile
··· 12 12 13 13 # Core support for S5PV210 system 14 14 15 - obj-$(CONFIG_CPU_S5PV210) += cpu.o init.o clock.o dma.o gpiolib.o 15 + obj-$(CONFIG_CPU_S5PV210) += cpu.o init.o clock.o dma.o 16 16 obj-$(CONFIG_CPU_S5PV210) += setup-i2c0.o 17 17 obj-$(CONFIG_S5PV210_PM) += pm.o sleep.o 18 18 obj-$(CONFIG_CPU_FREQ) += cpufreq.o
arch/arm/mach-s5pv210/gpiolib.c drivers/gpio/gpio-s5pv210.c
+6
drivers/gpio/Kconfig
··· 98 98 help 99 99 Say yes here to support Samsung SoCs GPIO library 100 100 101 + config GPIO_S5PV210 102 + bool "Samsung S5PV210/S5PC110 GPIO library support" 103 + default y if CPU_S5PV210 104 + help 105 + Say yes here to support Samsung S5PV210/S5PC110 SoCs GPIO library 106 + 101 107 config GPIO_PL061 102 108 bool "PrimeCell PL061 GPIO support" 103 109 depends on ARM_AMBA
+1
drivers/gpio/Makefile
··· 10 10 obj-$(CONFIG_GPIO_BASIC_MMIO) += basic_mmio_gpio.o 11 11 obj-$(CONFIG_GPIO_EXYNOS4) += gpio-exynos4.o 12 12 obj-$(CONFIG_GPIO_PLAT_SAMSUNG) += gpio-plat-samsung.o 13 + obj-$(CONFIG_GPIO_S5PV210) += gpio-s5pv210.o 13 14 obj-$(CONFIG_GPIO_LANGWELL) += langwell_gpio.o 14 15 obj-$(CONFIG_GPIO_MAX730X) += max730x.o 15 16 obj-$(CONFIG_GPIO_MAX7300) += max7300.o