diff options
author | mirko <mirko@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-12-13 01:54:56 +0000 |
---|---|---|
committer | mirko <mirko@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-12-13 01:54:56 +0000 |
commit | a95f9f92e2953d5829a29e95644dc4c4bc93f590 (patch) | |
tree | 01f2bf78edb2e3bb1466df9bca72e068632d0e74 /target/linux/s3c24xx/patches-2.6.26/1086-fix-gpio-led-patch-still-pwm-t3.patch.patch | |
parent | 9fa649271dbc9c83417488203aeb1668a0238c54 (diff) |
change prefix for kernelpatchbase 2.6.26
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13619 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/s3c24xx/patches-2.6.26/1086-fix-gpio-led-patch-still-pwm-t3.patch.patch')
-rwxr-xr-x | target/linux/s3c24xx/patches-2.6.26/1086-fix-gpio-led-patch-still-pwm-t3.patch.patch | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/target/linux/s3c24xx/patches-2.6.26/1086-fix-gpio-led-patch-still-pwm-t3.patch.patch b/target/linux/s3c24xx/patches-2.6.26/1086-fix-gpio-led-patch-still-pwm-t3.patch.patch new file mode 100755 index 0000000000..a49a9f85ae --- /dev/null +++ b/target/linux/s3c24xx/patches-2.6.26/1086-fix-gpio-led-patch-still-pwm-t3.patch.patch @@ -0,0 +1,58 @@ +From 3488a253e7a20d491d180313340f39cf6fd043a9 Mon Sep 17 00:00:00 2001 +From: warmcat <andy@warmcat.com> +Date: Fri, 25 Jul 2008 23:06:01 +0100 +Subject: [PATCH] fix-gpio-led-patch-still-pwm-t3.patch + +Starting up all the PWMs seems to be needed for PWM3 operation +and FIQ / HDQ / VIB operation. But after starting, turn the +LEDs to GPIO-only. + +Applies on top of Willie's patch + +Signed-off-by: Andy Green <andy@openmoko.com> +--- + drivers/leds/leds-neo1973-gta02.c | 9 +++++---- + 1 files changed, 5 insertions(+), 4 deletions(-) + +diff --git a/drivers/leds/leds-neo1973-gta02.c b/drivers/leds/leds-neo1973-gta02.c +index e442e48..bf1d540 100644 +--- a/drivers/leds/leds-neo1973-gta02.c ++++ b/drivers/leds/leds-neo1973-gta02.c +@@ -127,22 +127,22 @@ static int __init gta02led_probe(struct platform_device *pdev) + + switch (lp->gpio) { + case S3C2410_GPB0: +- lp->has_pwm = 0; ++ lp->has_pwm = 1; + lp->pwm.timerid = PWM0; + s3c2410_gpio_cfgpin(lp->gpio, S3C2410_GPB0_TOUT0); + break; + case S3C2410_GPB1: +- lp->has_pwm = 0; ++ lp->has_pwm = 1; + lp->pwm.timerid = PWM1; + s3c2410_gpio_cfgpin(lp->gpio, S3C2410_GPB1_TOUT1); + break; + case S3C2410_GPB2: +- lp->has_pwm = 0; ++ lp->has_pwm = 1; + lp->pwm.timerid = PWM2; + s3c2410_gpio_cfgpin(lp->gpio, S3C2410_GPB2_TOUT2); + break; + case S3C2410_GPB3: +- lp->has_pwm = 0; ++ lp->has_pwm = 1; + lp->pwm.timerid = PWM3; + s3c2410_gpio_cfgpin(lp->gpio, S3C2410_GPB3_TOUT3); + break; +@@ -167,6 +167,7 @@ static int __init gta02led_probe(struct platform_device *pdev) + break; + default: + break; ++ } + + mutex_init(&lp->mutex); + rc = led_classdev_register(&pdev->dev, &lp->cdev); +-- +1.5.6.3 + |