[PATCH 3/3] gpio-samsung: Remove now unused s3c2410_gpio* API

2012-08-25 Thread Sylwester Nawrocki
There is no more users of s3c2410_gpio_pullup(), s3c2410_gpio_setpin() and s3c2410_gpio_getpin() so remove theese functions. Cc: Kukjin Kim Signed-off-by: Sylwester Nawrocki --- drivers/gpio/gpio-samsung.c | 40 1 files changed, 0 insertions(+), 40 del

[PATCH 2/3] ARM: S3C24XX: Remove obsolete GPIO API declarations

2012-08-25 Thread Sylwester Nawrocki
It's safe to empty the plat-samsung/incude/plat/gpio-fns.h header now when all users of those functions have been converted to generic gpiolib API or to s3c_gpio_cfg(). Cc: Ben Dooks Signed-off-by: Sylwester Nawrocki --- arch/arm/plat-samsung/include/plat/gpio-fns.h | 97 -

[PATCH 1/3] ARM: S3C24XX: Convert users of s3c2410_gpio_setpin to gpiolib API

2012-08-25 Thread Sylwester Nawrocki
This is a prerequisite for removal of deprecated s3c2410_gpio* API from the Samsung gpiolib driver. Cc: Ben Dooks Cc: Guillaume Gourat Cc: Michel Pollet Signed-off-by: Sylwester Nawrocki --- arch/arm/mach-s3c24xx/mach-anubis.c |3 ++- arch/arm/mach-s3c24xx/mach-jive.c | 12 ++-

[PATCH 0/3] Removal of obsolete s3c2410_* GPIO API

2012-08-25 Thread Sylwester Nawrocki
This short patch series converts remaining users of the s3c24xx SoC specific gpiolib functions to the gpiolib API and finally removes all s3c2410_* functions from drivers/gpio/gpio-samsung.c. Sylwester Nawrocki (3): ARM: S3C24XX: Convert users of s3c2410_gpio_setpin to gpiolib API ARM: S3C24XX