diff options
Diffstat (limited to 'drivers/video/sh_mipi_dsi.c')
-rw-r--r-- | drivers/video/sh_mipi_dsi.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/video/sh_mipi_dsi.c b/drivers/video/sh_mipi_dsi.c index 4c6b84488561..3951fdae5f68 100644 --- a/drivers/video/sh_mipi_dsi.c +++ b/drivers/video/sh_mipi_dsi.c | |||
@@ -127,8 +127,7 @@ static void sh_mipi_shutdown(struct platform_device *pdev) | |||
127 | sh_mipi_dsi_enable(mipi, false); | 127 | sh_mipi_dsi_enable(mipi, false); |
128 | } | 128 | } |
129 | 129 | ||
130 | static int __init sh_mipi_setup(struct sh_mipi *mipi, | 130 | static int sh_mipi_setup(struct sh_mipi *mipi, struct sh_mipi_dsi_info *pdata) |
131 | struct sh_mipi_dsi_info *pdata) | ||
132 | { | 131 | { |
133 | void __iomem *base = mipi->base; | 132 | void __iomem *base = mipi->base; |
134 | struct sh_mobile_lcdc_chan_cfg *ch = pdata->lcd_chan; | 133 | struct sh_mobile_lcdc_chan_cfg *ch = pdata->lcd_chan; |
@@ -551,7 +550,7 @@ efindslot: | |||
551 | return ret; | 550 | return ret; |
552 | } | 551 | } |
553 | 552 | ||
554 | static int __exit sh_mipi_remove(struct platform_device *pdev) | 553 | static int __devexit sh_mipi_remove(struct platform_device *pdev) |
555 | { | 554 | { |
556 | struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 555 | struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
557 | struct resource *res2 = platform_get_resource(pdev, IORESOURCE_MEM, 1); | 556 | struct resource *res2 = platform_get_resource(pdev, IORESOURCE_MEM, 1); |
@@ -592,7 +591,7 @@ static int __exit sh_mipi_remove(struct platform_device *pdev) | |||
592 | } | 591 | } |
593 | 592 | ||
594 | static struct platform_driver sh_mipi_driver = { | 593 | static struct platform_driver sh_mipi_driver = { |
595 | .remove = __exit_p(sh_mipi_remove), | 594 | .remove = __devexit_p(sh_mipi_remove), |
596 | .shutdown = sh_mipi_shutdown, | 595 | .shutdown = sh_mipi_shutdown, |
597 | .driver = { | 596 | .driver = { |
598 | .name = "sh-mipi-dsi", | 597 | .name = "sh-mipi-dsi", |