Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ec080059 authored by Kukjin Kim's avatar Kukjin Kim
Browse files

gpio/s3c64xx: move gpio driver into drivers/gpio/



Cc: Ben Dooks <ben-linux@fluff.org>
Acked-by: default avatarGrant Likely <grant.likely@secretlab.ca>
Signed-off-by: default avatarKukjin Kim <kgene.kim@samsung.com>
parent 536137bc
Loading
Loading
Loading
Loading
+0 −1
Original line number Original line Diff line number Diff line
@@ -13,7 +13,6 @@ obj- :=
# Core files
# Core files
obj-y				+= cpu.o
obj-y				+= cpu.o
obj-y				+= clock.o
obj-y				+= clock.o
obj-y				+= gpiolib.o


# Core support for S3C6400 system
# Core support for S3C6400 system


+4 −0
Original line number Original line Diff line number Diff line
@@ -139,6 +139,10 @@ config GPIO_S3C24XX
	def_bool y
	def_bool y
	depends on PLAT_S3C24XX
	depends on PLAT_S3C24XX


config GPIO_S3C64XX
	def_bool y
	depends on ARCH_S3C64XX

config GPIO_S5PC100
config GPIO_S5PC100
	def_bool y
	def_bool y
	depends on CPU_S5PC100
	depends on CPU_S5PC100
+1 −0
Original line number Original line Diff line number Diff line
@@ -41,6 +41,7 @@ obj-$(CONFIG_GPIO_RDC321X) += gpio-rdc321x.o


obj-$(CONFIG_GPIO_PLAT_SAMSUNG)	+= gpio-plat-samsung.o
obj-$(CONFIG_GPIO_PLAT_SAMSUNG)	+= gpio-plat-samsung.o
obj-$(CONFIG_GPIO_S3C24XX)	+= gpio-s3c24xx.o
obj-$(CONFIG_GPIO_S3C24XX)	+= gpio-s3c24xx.o
obj-$(CONFIG_GPIO_S3C64XX)	+= gpio-s3c64xx.o
obj-$(CONFIG_GPIO_S5PC100)	+= gpio-s5pc100.o
obj-$(CONFIG_GPIO_S5PC100)	+= gpio-s5pc100.o
obj-$(CONFIG_GPIO_S5PV210)	+= gpio-s5pv210.o
obj-$(CONFIG_GPIO_S5PV210)	+= gpio-s5pv210.o


+1 −2
Original line number Original line Diff line number Diff line
/* arch/arm/plat-s3c64xx/gpiolib.c
/*
 *
 * Copyright 2008 Openmoko, Inc.
 * Copyright 2008 Openmoko, Inc.
 * Copyright 2008 Simtec Electronics
 * Copyright 2008 Simtec Electronics
 *      Ben Dooks <ben@simtec.co.uk>
 *      Ben Dooks <ben@simtec.co.uk>