summaryrefslogtreecommitdiffstats
path: root/target/linux/s3c24xx/files-2.6.30/drivers/leds/leds-gta02.c
diff options
context:
space:
mode:
authorlars <lars@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-07-30 15:08:05 +0000
committerlars <lars@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-07-30 15:08:05 +0000
commitd6694fb05efb76fcc931bd1588facd28073fcaf0 (patch)
tree559918367851d193ba7e0bc123f72be9bb3362da /target/linux/s3c24xx/files-2.6.30/drivers/leds/leds-gta02.c
parent5c0a059eb9effd5ccaad4a9f904ee4bafba14885 (diff)
[s3c24xx] Get rid of gpio shadowing.
I fail really to see why this would be necessary here. So get rid of it and see if anything breaks... git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17052 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/s3c24xx/files-2.6.30/drivers/leds/leds-gta02.c')
-rw-r--r--target/linux/s3c24xx/files-2.6.30/drivers/leds/leds-gta02.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/target/linux/s3c24xx/files-2.6.30/drivers/leds/leds-gta02.c b/target/linux/s3c24xx/files-2.6.30/drivers/leds/leds-gta02.c
index 1d65eeaf3..48559b113 100644
--- a/target/linux/s3c24xx/files-2.6.30/drivers/leds/leds-gta02.c
+++ b/target/linux/s3c24xx/files-2.6.30/drivers/leds/leds-gta02.c
@@ -19,7 +19,6 @@
#include <asm/mach-types.h>
#include <mach/gta02.h>
#include <plat/regs-timer.h>
-#include <linux/gta02-shadow.h>
#define MAX_LEDS 3
#define COUNTER 256
@@ -54,7 +53,7 @@ static void gta02led_set(struct led_classdev *led_cdev,
struct gta02_led_priv *lp = to_priv(led_cdev);
spin_lock_irqsave(&lp->lock, flags);
- gta02_gpb_setpin(lp->gpio, value ? 1 : 0);
+ s3c2410_gpio_setpin(lp->gpio, value ? 1 : 0);
spin_unlock_irqrestore(&lp->lock, flags);
}
@@ -117,7 +116,6 @@ static int __init gta02led_probe(struct platform_device *pdev)
case S3C2410_GPB1:
case S3C2410_GPB2:
s3c2410_gpio_cfgpin(lp->gpio, S3C2410_GPIO_OUTPUT);
- gta02_gpb_add_shadow_gpio(lp->gpio);
break;
default:
break;