diff options
Diffstat (limited to 'drivers/video/backlight/pcf50633-backlight.c')
-rw-r--r-- | drivers/video/backlight/pcf50633-backlight.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/backlight/pcf50633-backlight.c b/drivers/video/backlight/pcf50633-backlight.c index c092159f4383..0087396007e4 100644 --- a/drivers/video/backlight/pcf50633-backlight.c +++ b/drivers/video/backlight/pcf50633-backlight.c | |||
@@ -99,7 +99,7 @@ static const struct backlight_ops pcf50633_bl_ops = { | |||
99 | .options = BL_CORE_SUSPENDRESUME, | 99 | .options = BL_CORE_SUSPENDRESUME, |
100 | }; | 100 | }; |
101 | 101 | ||
102 | static int __devinit pcf50633_bl_probe(struct platform_device *pdev) | 102 | static int pcf50633_bl_probe(struct platform_device *pdev) |
103 | { | 103 | { |
104 | struct pcf50633_bl *pcf_bl; | 104 | struct pcf50633_bl *pcf_bl; |
105 | struct device *parent = pdev->dev.parent; | 105 | struct device *parent = pdev->dev.parent; |
@@ -145,7 +145,7 @@ static int __devinit pcf50633_bl_probe(struct platform_device *pdev) | |||
145 | return 0; | 145 | return 0; |
146 | } | 146 | } |
147 | 147 | ||
148 | static int __devexit pcf50633_bl_remove(struct platform_device *pdev) | 148 | static int pcf50633_bl_remove(struct platform_device *pdev) |
149 | { | 149 | { |
150 | struct pcf50633_bl *pcf_bl = platform_get_drvdata(pdev); | 150 | struct pcf50633_bl *pcf_bl = platform_get_drvdata(pdev); |
151 | 151 | ||
@@ -158,7 +158,7 @@ static int __devexit pcf50633_bl_remove(struct platform_device *pdev) | |||
158 | 158 | ||
159 | static struct platform_driver pcf50633_bl_driver = { | 159 | static struct platform_driver pcf50633_bl_driver = { |
160 | .probe = pcf50633_bl_probe, | 160 | .probe = pcf50633_bl_probe, |
161 | .remove = __devexit_p(pcf50633_bl_remove), | 161 | .remove = pcf50633_bl_remove, |
162 | .driver = { | 162 | .driver = { |
163 | .name = "pcf50633-backlight", | 163 | .name = "pcf50633-backlight", |
164 | }, | 164 | }, |