From: Ben Dooks Date: Wed, 30 Jul 2008 05:32:56 +0000 (-0700) Subject: backlight: give platform_lcd the same name as the platform device. X-Git-Tag: v2.6.27-rc2~204 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e958d3ace7791f33518f0259cd3cf229408b135c;p=platform%2Fkernel%2Flinux-3.10.git backlight: give platform_lcd the same name as the platform device. When registering an platform_lcd, use the name of the platform device specified in case there are more than one platform_lcd backlights registered. Signed-off-by: Ben Dooks Cc: Richard Purdie Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/video/backlight/platform_lcd.c b/drivers/video/backlight/platform_lcd.c index 72d44db..29d7121 100644 --- a/drivers/video/backlight/platform_lcd.c +++ b/drivers/video/backlight/platform_lcd.c @@ -92,7 +92,7 @@ static int __devinit platform_lcd_probe(struct platform_device *pdev) plcd->us = dev; plcd->pdata = pdata; - plcd->lcd = lcd_device_register("platform-lcd", dev, + plcd->lcd = lcd_device_register(dev_name(dev), dev, plcd, &platform_lcd_ops); if (IS_ERR(plcd->lcd)) { dev_err(dev, "cannot register lcd device\n");