mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-04 20:26:40 +07:00
backlight: lms283gf05: use devm_lcd_device_register()
Use devm_lcd_device_register() to make cleanup paths simpler, and remove unnecessary remove(). 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
5690378efa
commit
0a1c55d021
@ -173,7 +173,8 @@ static int lms283gf05_probe(struct spi_device *spi)
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
ld = lcd_device_register("lms283gf05", &spi->dev, st, &lms_ops);
|
||||
ld = devm_lcd_device_register(&spi->dev, "lms283gf05", &spi->dev, st,
|
||||
&lms_ops);
|
||||
if (IS_ERR(ld))
|
||||
return PTR_ERR(ld);
|
||||
|
||||
@ -190,22 +191,12 @@ static int lms283gf05_probe(struct spi_device *spi)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int lms283gf05_remove(struct spi_device *spi)
|
||||
{
|
||||
struct lms283gf05_state *st = spi_get_drvdata(spi);
|
||||
|
||||
lcd_device_unregister(st->ld);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct spi_driver lms283gf05_driver = {
|
||||
.driver = {
|
||||
.name = "lms283gf05",
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
.probe = lms283gf05_probe,
|
||||
.remove = lms283gf05_remove,
|
||||
};
|
||||
|
||||
module_spi_driver(lms283gf05_driver);
|
||||
|
Loading…
Reference in New Issue
Block a user