diff options
author | Olof Johansson <olof@lixom.net> | 2013-01-14 13:20:02 -0500 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2013-01-14 13:20:02 -0500 |
commit | 8d84981e395850aab31c3f2ca7e2738e03f671d7 (patch) | |
tree | 933425fddb23d28be802277471df3fe3f6c2711d /drivers/video/auo_k1901fb.c | |
parent | 00c82d64405631967dca3890a9ce80ab35d04cc7 (diff) | |
parent | 77cc982f6a3b33a5aa058ad3b20cda8866db2948 (diff) |
Merge branch 'clocksource/cleanup' into next/cleanup
Clockevent cleanup series from Shawn Guo.
Resolved move/change conflict in mach-pxa/time.c due to the sys_timer
cleanup.
* clocksource/cleanup:
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
+ sync to Linux 3.8-rc3
Signed-off-by: Olof Johansson <olof@lixom.net>
Conflicts:
arch/arm/mach-pxa/time.c
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", |