aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/leds
diff options
context:
space:
mode:
authorKim, Milo <Milo.Kim@ti.com>2012-03-23 18:02:08 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2012-03-23 19:58:34 -0400
commit5ae4e8a77dc82afcfe8460168ec0b94f4b79a54a (patch)
tree563eb3978832bff9e989b9cc7aa12b3da3f2fa20 /drivers/leds
parentc5bd2a712a0c7299b61b0e02404b1376f794d251 (diff)
drivers/leds/leds-lp5521.c: add 'name' in the lp5521_led_config
The name of each led channel can be configurable. For the compatibility, the name is set to default value(xx:channelN) when 'name' is not defined. Signed-off-by: Milo(Woogyom) Kim <milo.kim@ti.com> Acked-by: Linus Walleij <linus.walleij@linaro.org> Cc: Arun MURTHY <arun.murthy@stericsson.com> Cc: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com> Cc: Richard Purdie <rpurdie@rpsys.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/leds')
-rw-r--r--drivers/leds/leds-lp5521.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/drivers/leds/leds-lp5521.c b/drivers/leds/leds-lp5521.c
index c42c8f049565..59feecdfe3a8 100644
--- a/drivers/leds/leds-lp5521.c
+++ b/drivers/leds/leds-lp5521.c
@@ -620,10 +620,15 @@ static int __devinit lp5521_init_led(struct lp5521_led *led,
620 return -EINVAL; 620 return -EINVAL;
621 } 621 }
622 622
623 snprintf(name, sizeof(name), "%s:channel%d",
624 pdata->label ?: client->name, chan);
625 led->cdev.brightness_set = lp5521_set_brightness; 623 led->cdev.brightness_set = lp5521_set_brightness;
626 led->cdev.name = name; 624 if (pdata->led_config[chan].name) {
625 led->cdev.name = pdata->led_config[chan].name;
626 } else {
627 snprintf(name, sizeof(name), "%s:channel%d",
628 pdata->label ?: client->name, chan);
629 led->cdev.name = name;
630 }
631
627 res = led_classdev_register(dev, &led->cdev); 632 res = led_classdev_register(dev, &led->cdev);
628 if (res < 0) { 633 if (res < 0) {
629 dev_err(dev, "couldn't register led on channel %d\n", chan); 634 dev_err(dev, "couldn't register led on channel %d\n", chan);