Commit e2e7da9b authored by Axel Lin's avatar Axel Lin Committed by Linus Torvalds

drivers/video/backlight/ld9040.c: small fixes

- Fix checking of wrong return value for backlight_device_register()

- Properly free allocated resources in ld9040_probe() error path and
  ld9040_remove().
Signed-off-by: default avatarAxel Lin <axel.lin@gmail.com>
Cc: Donghwa Lee <dh09.lee@samsung.com>
Cc: Richard Purdie <rpurdie@rpsys.net>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent ccb6108f
...@@ -701,9 +701,9 @@ static int ld9040_probe(struct spi_device *spi) ...@@ -701,9 +701,9 @@ static int ld9040_probe(struct spi_device *spi)
bd = backlight_device_register("ld9040-bl", &spi->dev, bd = backlight_device_register("ld9040-bl", &spi->dev,
lcd, &ld9040_backlight_ops, NULL); lcd, &ld9040_backlight_ops, NULL);
if (IS_ERR(ld)) { if (IS_ERR(bd)) {
ret = PTR_ERR(ld); ret = PTR_ERR(bd);
goto out_free_lcd; goto out_unregister_lcd;
} }
bd->props.max_brightness = MAX_BRIGHTNESS; bd->props.max_brightness = MAX_BRIGHTNESS;
...@@ -731,6 +731,8 @@ static int ld9040_probe(struct spi_device *spi) ...@@ -731,6 +731,8 @@ static int ld9040_probe(struct spi_device *spi)
dev_info(&spi->dev, "ld9040 panel driver has been probed.\n"); dev_info(&spi->dev, "ld9040 panel driver has been probed.\n");
return 0; return 0;
out_unregister_lcd:
lcd_device_unregister(lcd->ld);
out_free_lcd: out_free_lcd:
kfree(lcd); kfree(lcd);
return ret; return ret;
...@@ -741,6 +743,7 @@ static int __devexit ld9040_remove(struct spi_device *spi) ...@@ -741,6 +743,7 @@ static int __devexit ld9040_remove(struct spi_device *spi)
struct ld9040 *lcd = dev_get_drvdata(&spi->dev); struct ld9040 *lcd = dev_get_drvdata(&spi->dev);
ld9040_power(lcd, FB_BLANK_POWERDOWN); ld9040_power(lcd, FB_BLANK_POWERDOWN);
backlight_device_unregister(lcd->bd);
lcd_device_unregister(lcd->ld); lcd_device_unregister(lcd->ld);
kfree(lcd); kfree(lcd);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment