1 From 3488a253e7a20d491d180313340f39cf6fd043a9 Mon Sep 17 00:00:00 2001
2 From: warmcat <andy@warmcat.com>
3 Date: Fri, 25 Jul 2008 23:06:01 +0100
4 Subject: [PATCH] fix-gpio-led-patch-still-pwm-t3.patch
6 Starting up all the PWMs seems to be needed for PWM3 operation
7 and FIQ / HDQ / VIB operation. But after starting, turn the
10 Applies on top of Willie's patch
12 Signed-off-by: Andy Green <andy@openmoko.com>
14 drivers/leds/leds-neo1973-gta02.c | 9 +++++----
15 1 files changed, 5 insertions(+), 4 deletions(-)
17 diff --git a/drivers/leds/leds-neo1973-gta02.c b/drivers/leds/leds-neo1973-gta02.c
18 index e442e48..bf1d540 100644
19 --- a/drivers/leds/leds-neo1973-gta02.c
20 +++ b/drivers/leds/leds-neo1973-gta02.c
21 @@ -127,22 +127,22 @@ static int __init gta02led_probe(struct platform_device *pdev)
27 lp->pwm.timerid = PWM0;
28 s3c2410_gpio_cfgpin(lp->gpio, S3C2410_GPB0_TOUT0);
33 lp->pwm.timerid = PWM1;
34 s3c2410_gpio_cfgpin(lp->gpio, S3C2410_GPB1_TOUT1);
39 lp->pwm.timerid = PWM2;
40 s3c2410_gpio_cfgpin(lp->gpio, S3C2410_GPB2_TOUT2);
45 lp->pwm.timerid = PWM3;
46 s3c2410_gpio_cfgpin(lp->gpio, S3C2410_GPB3_TOUT3);
48 @@ -167,6 +167,7 @@ static int __init gta02led_probe(struct platform_device *pdev)
54 mutex_init(&lp->mutex);
55 rc = led_classdev_register(&pdev->dev, &lp->cdev);