diff options
Diffstat (limited to 'drivers/video/backlight/vgg2432a4.c')
-rw-r--r-- | drivers/video/backlight/vgg2432a4.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/drivers/video/backlight/vgg2432a4.c b/drivers/video/backlight/vgg2432a4.c index 45e81b4cf8b4..84d582f591dc 100644 --- a/drivers/video/backlight/vgg2432a4.c +++ b/drivers/video/backlight/vgg2432a4.c | |||
@@ -208,12 +208,11 @@ static int vgg2432a4_lcd_init(struct ili9320 *lcd, | |||
208 | #ifdef CONFIG_PM | 208 | #ifdef CONFIG_PM |
209 | static int vgg2432a4_suspend(struct spi_device *spi, pm_message_t state) | 209 | static int vgg2432a4_suspend(struct spi_device *spi, pm_message_t state) |
210 | { | 210 | { |
211 | return ili9320_suspend(dev_get_drvdata(&spi->dev), state); | 211 | return ili9320_suspend(spi_get_drvdata(spi), state); |
212 | } | 212 | } |
213 | |||
214 | static int vgg2432a4_resume(struct spi_device *spi) | 213 | static int vgg2432a4_resume(struct spi_device *spi) |
215 | { | 214 | { |
216 | return ili9320_resume(dev_get_drvdata(&spi->dev)); | 215 | return ili9320_resume(spi_get_drvdata(spi)); |
217 | } | 216 | } |
218 | #else | 217 | #else |
219 | #define vgg2432a4_suspend NULL | 218 | #define vgg2432a4_suspend NULL |
@@ -242,12 +241,12 @@ static int vgg2432a4_probe(struct spi_device *spi) | |||
242 | 241 | ||
243 | static int vgg2432a4_remove(struct spi_device *spi) | 242 | static int vgg2432a4_remove(struct spi_device *spi) |
244 | { | 243 | { |
245 | return ili9320_remove(dev_get_drvdata(&spi->dev)); | 244 | return ili9320_remove(spi_get_drvdata(spi)); |
246 | } | 245 | } |
247 | 246 | ||
248 | static void vgg2432a4_shutdown(struct spi_device *spi) | 247 | static void vgg2432a4_shutdown(struct spi_device *spi) |
249 | { | 248 | { |
250 | ili9320_shutdown(dev_get_drvdata(&spi->dev)); | 249 | ili9320_shutdown(spi_get_drvdata(spi)); |
251 | } | 250 | } |
252 | 251 | ||
253 | static struct spi_driver vgg2432a4_driver = { | 252 | static struct spi_driver vgg2432a4_driver = { |