backlight: lms501kf03: use devm_lcd_device_register()

Use devm_lcd_device_register() to make cleanup paths simpler.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Jingoo Han 2013-11-12 15:09:29 -08:00 committed by Linus Torvalds
parent 0a1c55d021
commit 8358741ab7
1 changed files with 2 additions and 4 deletions

View File

@ -350,8 +350,8 @@ static int lms501kf03_probe(struct spi_device *spi)
return -EINVAL;
}
ld = lcd_device_register("lms501kf03", &spi->dev, lcd,
&lms501kf03_lcd_ops);
ld = devm_lcd_device_register(&spi->dev, "lms501kf03", &spi->dev, lcd,
&lms501kf03_lcd_ops);
if (IS_ERR(ld))
return PTR_ERR(ld);
@ -382,8 +382,6 @@ static int lms501kf03_remove(struct spi_device *spi)
struct lms501kf03 *lcd = spi_get_drvdata(spi);
lms501kf03_power(lcd, FB_BLANK_POWERDOWN);
lcd_device_unregister(lcd->ld);
return 0;
}