diff options
author | Olof Johansson <olof@lixom.net> | 2013-01-28 16:36:23 -0500 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2013-01-28 16:36:23 -0500 |
commit | 7bcdd8d5e31db4f49ae52580e86723c376ee0999 (patch) | |
tree | bd252895046e9e17d3ab74b6a4d592b74976ca99 /drivers/video/cobalt_lcdfb.c | |
parent | 96e61b8e34ea4982ce57319c19ab73e9e5d74165 (diff) | |
parent | f8060f5446b1f2782f0a8ca9be2d870ea4198aee (diff) |
Merge branch 'depends/cleanup' into next/drivers
* depends/cleanup: (375 commits)
ARM: at91: fix board-rm9200-dt after sys_timer conversion
clocksource: use clockevents_config_and_register() where possible
ARM: use clockevents_config_and_register() where possible
clockevents: export clockevents_config_and_register for module use
timer: vt8500: Move timer code to drivers/clocksource
irqchip: Move ARM vic.h to include/linux/irqchip/arm-vic.h
ARM: picoxcell: use common irqchip_init function
ARM: spear: use common irqchip_init function
irqchip: Move ARM VIC to drivers/irqchip
ARM: samsung: remove unused tick.h
ARM: remove unneeded vic.h includes
ARM: remove mach .handle_irq for VIC users
ARM: VIC: set handle_arch_irq in VIC initialization
ARM: VIC: shrink down vic.h
irqchip: Move ARM gic.h to include/linux/irqchip/arm-gic.h
ARM: use common irqchip_init for GIC init
irqchip: Move ARM GIC to drivers/irqchip
ARM: remove mach .handle_irq for GIC users
ARM: GIC: set handle_arch_irq in GIC initialization
ARM: GIC: remove direct use of gic_raise_softirq
...
Diffstat (limited to 'drivers/video/cobalt_lcdfb.c')
-rw-r--r-- | drivers/video/cobalt_lcdfb.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/video/cobalt_lcdfb.c b/drivers/video/cobalt_lcdfb.c index 01a4ee7cc6b1..a9031498e10c 100644 --- a/drivers/video/cobalt_lcdfb.c +++ b/drivers/video/cobalt_lcdfb.c | |||
@@ -167,7 +167,7 @@ static void lcd_clear(struct fb_info *info) | |||
167 | lcd_write_control(info, LCD_RESET); | 167 | lcd_write_control(info, LCD_RESET); |
168 | } | 168 | } |
169 | 169 | ||
170 | static struct fb_fix_screeninfo cobalt_lcdfb_fix __devinitdata = { | 170 | static struct fb_fix_screeninfo cobalt_lcdfb_fix = { |
171 | .id = "cobalt-lcd", | 171 | .id = "cobalt-lcd", |
172 | .type = FB_TYPE_TEXT, | 172 | .type = FB_TYPE_TEXT, |
173 | .type_aux = FB_AUX_TEXT_MDA, | 173 | .type_aux = FB_AUX_TEXT_MDA, |
@@ -331,7 +331,7 @@ static struct fb_ops cobalt_lcd_fbops = { | |||
331 | .fb_cursor = cobalt_lcdfb_cursor, | 331 | .fb_cursor = cobalt_lcdfb_cursor, |
332 | }; | 332 | }; |
333 | 333 | ||
334 | static int __devinit cobalt_lcdfb_probe(struct platform_device *dev) | 334 | static int cobalt_lcdfb_probe(struct platform_device *dev) |
335 | { | 335 | { |
336 | struct fb_info *info; | 336 | struct fb_info *info; |
337 | struct resource *res; | 337 | struct resource *res; |
@@ -374,7 +374,7 @@ static int __devinit cobalt_lcdfb_probe(struct platform_device *dev) | |||
374 | return 0; | 374 | return 0; |
375 | } | 375 | } |
376 | 376 | ||
377 | static int __devexit cobalt_lcdfb_remove(struct platform_device *dev) | 377 | static int cobalt_lcdfb_remove(struct platform_device *dev) |
378 | { | 378 | { |
379 | struct fb_info *info; | 379 | struct fb_info *info; |
380 | 380 | ||
@@ -389,7 +389,7 @@ static int __devexit cobalt_lcdfb_remove(struct platform_device *dev) | |||
389 | 389 | ||
390 | static struct platform_driver cobalt_lcdfb_driver = { | 390 | static struct platform_driver cobalt_lcdfb_driver = { |
391 | .probe = cobalt_lcdfb_probe, | 391 | .probe = cobalt_lcdfb_probe, |
392 | .remove = __devexit_p(cobalt_lcdfb_remove), | 392 | .remove = cobalt_lcdfb_remove, |
393 | .driver = { | 393 | .driver = { |
394 | .name = "cobalt-lcd", | 394 | .name = "cobalt-lcd", |
395 | .owner = THIS_MODULE, | 395 | .owner = THIS_MODULE, |