diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-02-21 19:43:42 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-21 20:22:23 -0500 |
commit | 9319dfa1e08700d269a97ac117ac576f875eecfb (patch) | |
tree | 9990f1692e9065131a9514c82406d3bd17e29b6e /drivers/video/backlight | |
parent | c324f51a2e44ecd28fab19a7941ee3e4173cf641 (diff) |
backlight: corgi_lcd: use spi_get_drvdata and spi_set_drvdata
Use the wrapper functions for getting and setting the driver data using
spi_device instead of using dev_{get|set}_drvdata with &spi->dev, so we
can directly pass a struct spi_device.
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>
Diffstat (limited to 'drivers/video/backlight')
-rw-r--r-- | drivers/video/backlight/corgi_lcd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/video/backlight/corgi_lcd.c b/drivers/video/backlight/corgi_lcd.c index e323fcbe884e..77c81f850dd4 100644 --- a/drivers/video/backlight/corgi_lcd.c +++ b/drivers/video/backlight/corgi_lcd.c | |||
@@ -460,7 +460,7 @@ static const struct backlight_ops corgi_bl_ops = { | |||
460 | #ifdef CONFIG_PM | 460 | #ifdef CONFIG_PM |
461 | static int corgi_lcd_suspend(struct spi_device *spi, pm_message_t state) | 461 | static int corgi_lcd_suspend(struct spi_device *spi, pm_message_t state) |
462 | { | 462 | { |
463 | struct corgi_lcd *lcd = dev_get_drvdata(&spi->dev); | 463 | struct corgi_lcd *lcd = spi_get_drvdata(spi); |
464 | 464 | ||
465 | corgibl_flags |= CORGIBL_SUSPENDED; | 465 | corgibl_flags |= CORGIBL_SUSPENDED; |
466 | corgi_bl_set_intensity(lcd, 0); | 466 | corgi_bl_set_intensity(lcd, 0); |
@@ -470,7 +470,7 @@ static int corgi_lcd_suspend(struct spi_device *spi, pm_message_t state) | |||
470 | 470 | ||
471 | static int corgi_lcd_resume(struct spi_device *spi) | 471 | static int corgi_lcd_resume(struct spi_device *spi) |
472 | { | 472 | { |
473 | struct corgi_lcd *lcd = dev_get_drvdata(&spi->dev); | 473 | struct corgi_lcd *lcd = spi_get_drvdata(spi); |
474 | 474 | ||
475 | corgibl_flags &= ~CORGIBL_SUSPENDED; | 475 | corgibl_flags &= ~CORGIBL_SUSPENDED; |
476 | corgi_lcd_set_power(lcd->lcd_dev, FB_BLANK_UNBLANK); | 476 | corgi_lcd_set_power(lcd->lcd_dev, FB_BLANK_UNBLANK); |
@@ -577,7 +577,7 @@ static int corgi_lcd_probe(struct spi_device *spi) | |||
577 | 577 | ||
578 | lcd->kick_battery = pdata->kick_battery; | 578 | lcd->kick_battery = pdata->kick_battery; |
579 | 579 | ||
580 | dev_set_drvdata(&spi->dev, lcd); | 580 | spi_set_drvdata(spi, lcd); |
581 | corgi_lcd_set_power(lcd->lcd_dev, FB_BLANK_UNBLANK); | 581 | corgi_lcd_set_power(lcd->lcd_dev, FB_BLANK_UNBLANK); |
582 | backlight_update_status(lcd->bl_dev); | 582 | backlight_update_status(lcd->bl_dev); |
583 | 583 | ||
@@ -594,7 +594,7 @@ err_unregister_lcd: | |||
594 | 594 | ||
595 | static int corgi_lcd_remove(struct spi_device *spi) | 595 | static int corgi_lcd_remove(struct spi_device *spi) |
596 | { | 596 | { |
597 | struct corgi_lcd *lcd = dev_get_drvdata(&spi->dev); | 597 | struct corgi_lcd *lcd = spi_get_drvdata(spi); |
598 | 598 | ||
599 | lcd->bl_dev->props.power = FB_BLANK_UNBLANK; | 599 | lcd->bl_dev->props.power = FB_BLANK_UNBLANK; |
600 | lcd->bl_dev->props.brightness = 0; | 600 | lcd->bl_dev->props.brightness = 0; |