diff options
author | Ben Dooks <ben-linux@fluff.org> | 2009-05-13 16:46:15 -0400 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2009-05-17 17:21:26 -0400 |
commit | 9f05f6a921353f4293cda37f221b9bfa532d3c57 (patch) | |
tree | ea0a863a139765c5816260a07b3b1d2015f06d95 /arch/arm/mach-s3c2410/mach-vr1000.c | |
parent | ec7f4d5d67ef63c724ab6d4bdc7d2ffa8861071a (diff) |
[ARM] S3C24XX: GPIO: Remove pin specific input and output defines
The use of S3C2410_GP[A-Z]x_INP and S3C2410_GP[A-Z]x_OUTP are
very rare and are taking up large amounts of space in the
regs-gpio.h header.
The GPIO layer has had generic input and out defines called
S3C2410_GPIO_INPUT and S3C2410_GPIO_OUTPUT for a while which work
for all S3C24XX GPIOs.
Do the following replacements:
S3C2410_GP[A-Z][0-9]*_\OUTP => S3C2410_GPIO_OUTPUT
S3C2410_GP[A-Z][0-9]*_\INP => /S3C2410_GPIO_INPUT
S3C2410_GPA[0-9]*_OUT => S3C2410_GPIO_OUTPUT
to remove any usages of these and prepare the header for
the removal of these.
The following command was used to acheive this:
find . -type f -writable ! -name regs-gpio.h ! -name "*~" | xargs sed -i~ -e 's/S3C2410_GP[A-Z][0-9]*_\OUTP/S3C2410_GPIO_OUTPUT/g' -e 's/S3C2410_GP[A-Z][0-9]*_\INP/S3C2410_GPIO_INPUT/g' -e 's/S3C2410_GPA[0-9]*_OUT/S3C2410_GPIO_OUTPUT/g'
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/mach-s3c2410/mach-vr1000.c')
-rw-r--r-- | arch/arm/mach-s3c2410/mach-vr1000.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-s3c2410/mach-vr1000.c b/arch/arm/mach-s3c2410/mach-vr1000.c index 61a1ea9c5c5c..7e002f9473bb 100644 --- a/arch/arm/mach-s3c2410/mach-vr1000.c +++ b/arch/arm/mach-s3c2410/mach-vr1000.c | |||
@@ -355,7 +355,7 @@ static struct clk *vr1000_clocks[] __initdata = { | |||
355 | 355 | ||
356 | static void vr1000_power_off(void) | 356 | static void vr1000_power_off(void) |
357 | { | 357 | { |
358 | s3c2410_gpio_cfgpin(S3C2410_GPB9, S3C2410_GPB9_OUTP); | 358 | s3c2410_gpio_cfgpin(S3C2410_GPB9, S3C2410_GPIO_OUTPUT); |
359 | s3c2410_gpio_setpin(S3C2410_GPB9, 1); | 359 | s3c2410_gpio_setpin(S3C2410_GPB9, 1); |
360 | } | 360 | } |
361 | 361 | ||