提交 eba3bfb4 编写于 作者: J Jingoo Han 提交者: Linus Torvalds

backlight: ld9040: convert ld9040 to dev_pm_ops

Instead of using legacy suspend/resume methods, using newer dev_pm_ops
structure allows better control over power management.
Signed-off-by: NJingoo Han <jg1.han@samsung.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 ef73e632
...@@ -775,12 +775,12 @@ static int ld9040_remove(struct spi_device *spi) ...@@ -775,12 +775,12 @@ static int ld9040_remove(struct spi_device *spi)
return 0; return 0;
} }
#if defined(CONFIG_PM) #ifdef CONFIG_PM_SLEEP
static int ld9040_suspend(struct spi_device *spi, pm_message_t mesg) static int ld9040_suspend(struct device *dev)
{ {
struct ld9040 *lcd = spi_get_drvdata(spi); struct ld9040 *lcd = dev_get_drvdata(dev);
dev_dbg(&spi->dev, "lcd->power = %d\n", lcd->power); dev_dbg(dev, "lcd->power = %d\n", lcd->power);
/* /*
* when lcd panel is suspend, lcd panel becomes off * when lcd panel is suspend, lcd panel becomes off
...@@ -789,19 +789,18 @@ static int ld9040_suspend(struct spi_device *spi, pm_message_t mesg) ...@@ -789,19 +789,18 @@ static int ld9040_suspend(struct spi_device *spi, pm_message_t mesg)
return ld9040_power(lcd, FB_BLANK_POWERDOWN); return ld9040_power(lcd, FB_BLANK_POWERDOWN);
} }
static int ld9040_resume(struct spi_device *spi) static int ld9040_resume(struct device *dev)
{ {
struct ld9040 *lcd = spi_get_drvdata(spi); struct ld9040 *lcd = dev_get_drvdata(dev);
lcd->power = FB_BLANK_POWERDOWN; lcd->power = FB_BLANK_POWERDOWN;
return ld9040_power(lcd, FB_BLANK_UNBLANK); return ld9040_power(lcd, FB_BLANK_UNBLANK);
} }
#else
#define ld9040_suspend NULL
#define ld9040_resume NULL
#endif #endif
static SIMPLE_DEV_PM_OPS(ld9040_pm_ops, ld9040_suspend, ld9040_resume);
/* Power down all displays on reboot, poweroff or halt. */ /* Power down all displays on reboot, poweroff or halt. */
static void ld9040_shutdown(struct spi_device *spi) static void ld9040_shutdown(struct spi_device *spi)
{ {
...@@ -814,12 +813,11 @@ static struct spi_driver ld9040_driver = { ...@@ -814,12 +813,11 @@ static struct spi_driver ld9040_driver = {
.driver = { .driver = {
.name = "ld9040", .name = "ld9040",
.owner = THIS_MODULE, .owner = THIS_MODULE,
.pm = &ld9040_pm_ops,
}, },
.probe = ld9040_probe, .probe = ld9040_probe,
.remove = ld9040_remove, .remove = ld9040_remove,
.shutdown = ld9040_shutdown, .shutdown = ld9040_shutdown,
.suspend = ld9040_suspend,
.resume = ld9040_resume,
}; };
module_spi_driver(ld9040_driver); module_spi_driver(ld9040_driver);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册