mirror of https://gitee.com/openkylin/linux.git
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:
parent
0a1c55d021
commit
8358741ab7
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue