diff options
Diffstat (limited to 'drivers/video/auo_k1901fb.c')
-rw-r--r-- | drivers/video/auo_k1901fb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/auo_k1901fb.c b/drivers/video/auo_k1901fb.c index 1c054c18616e..d1db1653cd88 100644 --- a/drivers/video/auo_k1901fb.c +++ b/drivers/video/auo_k1901fb.c | |||
@@ -209,7 +209,7 @@ static bool auok1901fb_need_refresh(struct auok190xfb_par *par) | |||
209 | return (par->update_cnt > 10); | 209 | return (par->update_cnt > 10); |
210 | } | 210 | } |
211 | 211 | ||
212 | static int __devinit auok1901fb_probe(struct platform_device *pdev) | 212 | static int auok1901fb_probe(struct platform_device *pdev) |
213 | { | 213 | { |
214 | struct auok190x_init_data init; | 214 | struct auok190x_init_data init; |
215 | struct auok190x_board *board; | 215 | struct auok190x_board *board; |
@@ -230,14 +230,14 @@ static int __devinit auok1901fb_probe(struct platform_device *pdev) | |||
230 | return auok190x_common_probe(pdev, &init); | 230 | return auok190x_common_probe(pdev, &init); |
231 | } | 231 | } |
232 | 232 | ||
233 | static int __devexit auok1901fb_remove(struct platform_device *pdev) | 233 | static int auok1901fb_remove(struct platform_device *pdev) |
234 | { | 234 | { |
235 | return auok190x_common_remove(pdev); | 235 | return auok190x_common_remove(pdev); |
236 | } | 236 | } |
237 | 237 | ||
238 | static struct platform_driver auok1901fb_driver = { | 238 | static struct platform_driver auok1901fb_driver = { |
239 | .probe = auok1901fb_probe, | 239 | .probe = auok1901fb_probe, |
240 | .remove = __devexit_p(auok1901fb_remove), | 240 | .remove = auok1901fb_remove, |
241 | .driver = { | 241 | .driver = { |
242 | .owner = THIS_MODULE, | 242 | .owner = THIS_MODULE, |
243 | .name = "auo_k1901fb", | 243 | .name = "auo_k1901fb", |