Commit 0f53449d authored by Jingoo Han's avatar Jingoo Han Committed by Linus Torvalds

backlight: tosa: use devm_lcd_device_register()

Use devm_lcd_device_register() to make cleanup paths simpler.
Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Cc: Tomi Valkeinen <tomi.valkeinen@ti.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 7dd78077
...@@ -206,8 +206,8 @@ static int tosa_lcd_probe(struct spi_device *spi) ...@@ -206,8 +206,8 @@ static int tosa_lcd_probe(struct spi_device *spi)
tosa_lcd_tg_on(data); tosa_lcd_tg_on(data);
data->lcd = lcd_device_register("tosa-lcd", &spi->dev, data, data->lcd = devm_lcd_device_register(&spi->dev, "tosa-lcd", &spi->dev,
&tosa_lcd_ops); data, &tosa_lcd_ops);
if (IS_ERR(data->lcd)) { if (IS_ERR(data->lcd)) {
ret = PTR_ERR(data->lcd); ret = PTR_ERR(data->lcd);
...@@ -226,8 +226,6 @@ static int tosa_lcd_remove(struct spi_device *spi) ...@@ -226,8 +226,6 @@ static int tosa_lcd_remove(struct spi_device *spi)
{ {
struct tosa_lcd_data *data = spi_get_drvdata(spi); struct tosa_lcd_data *data = spi_get_drvdata(spi);
lcd_device_unregister(data->lcd);
if (data->i2c) if (data->i2c)
i2c_unregister_device(data->i2c); i2c_unregister_device(data->i2c);
......
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