On Tue, Sep 28, 2010 at 3:40 PM, Arun Murthy <arun.murthy@xxxxxxxxxxxxxx> wrote: > A new element 'name' is added to pwm led platform data structure. > This is required to identify the pwm device. I cannot see what this name is used for? > > Signed-off-by: Arun Murthy <arun.murthy@xxxxxxxxxxxxxx> > Acked-by: Linus Walleij <linus.walleij@xxxxxxxxxxxxxx> > --- > Âdrivers/leds/leds-pwm.c Â|  Â4 +++- > Âinclude/linux/leds_pwm.h |  Â1 + > Â2 files changed, 4 insertions(+), 1 deletions(-) > > diff --git a/drivers/leds/leds-pwm.c b/drivers/leds/leds-pwm.c > index da3fa8d..8da2be6 100644 > --- a/drivers/leds/leds-pwm.c > +++ b/drivers/leds/leds-pwm.c > @@ -66,8 +66,10 @@ static int led_pwm_probe(struct platform_device *pdev) >        Âcur_led = &pdata->leds[i]; >        Âled_dat = &leds_data[i]; > > +        if (!pdata->name) > +            pdata->name = cur_led->name; >        Âled_dat->pwm = pwm_request(cur_led->pwm_id, > -                cur_led->name); > +                pdata->name); >        Âif (IS_ERR(led_dat->pwm)) { >            Âdev_err(&pdev->dev, "unable to request PWM %d\n", >                    Âcur_led->pwm_id); > diff --git a/include/linux/leds_pwm.h b/include/linux/leds_pwm.h > index 33a0711..7a847a0 100644 > --- a/include/linux/leds_pwm.h > +++ b/include/linux/leds_pwm.h > @@ -16,6 +16,7 @@ struct led_pwm { > Âstruct led_pwm_platform_data { >    Âint           num_leds; >    Âstruct led_pwm Â*leds; > +    char *name; > Â}; > > Â#endif > -- > 1.7.2.dirty > >