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

gpio: Move the s5pc100 GPIO to drivers/gpio

Move the Samsung s5pc100 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
82ab0f75 347ec4e4

+8 -1
+1 -1
arch/arm/mach-s5pc100/Makefile
··· 11 11 12 12 # Core support for S5PC100 system 13 13 14 - obj-$(CONFIG_CPU_S5PC100) += cpu.o init.o clock.o gpiolib.o 14 + obj-$(CONFIG_CPU_S5PC100) += cpu.o init.o clock.o 15 15 obj-$(CONFIG_CPU_S5PC100) += setup-i2c0.o 16 16 obj-$(CONFIG_CPU_S5PC100) += dma.o 17 17
arch/arm/mach-s5pc100/gpiolib.c drivers/gpio/gpio-s5pc100.c
+6
drivers/gpio/Kconfig
··· 98 98 help 99 99 Say yes here to support Samsung SoCs GPIO library 100 100 101 + config GPIO_S5PC100 102 + bool "Samsung S5PC100 GPIO library support" 103 + default y if CPU_S5PC100 104 + help 105 + Say yes here to support Samsung S5PC100 SoCs GPIO library 106 + 101 107 config GPIO_S5PV210 102 108 bool "Samsung S5PV210/S5PC110 GPIO library support" 103 109 default y if CPU_S5PV210
+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_S5PC100) += gpio-s5pc100.o 13 14 obj-$(CONFIG_GPIO_S5PV210) += gpio-s5pv210.o 14 15 obj-$(CONFIG_GPIO_LANGWELL) += langwell_gpio.o 15 16 obj-$(CONFIG_GPIO_MAX730X) += max730x.o