diff options
author | Olof Johansson <olof@lixom.net> | 2013-01-16 22:58:08 -0500 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2013-01-16 22:58:58 -0500 |
commit | 5046e385b4426e229a6beb4bce480762af91a6fc (patch) | |
tree | 65b4bff2c913a18840b3c58892853d51b942ac43 /drivers/rtc/rtc-twl.c | |
parent | a73b59c51ab288d81b515b504790267f594884b8 (diff) | |
parent | b86dc0d8c12bbb9fed3f392c284bdc7114ce00c1 (diff) |
Merge branch 'v3.8-samsung-fixes-3' of git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung into fixes
From Kukjin Kim:
That branch fixes build error for S3C24XX/S3C64xx. And corrects dw-mshc
properties on EXYNOS5 DT and fixes IRQ mapping on Cragganmore board.
* 'v3.8-samsung-fixes-3' of git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung:
ARM: S3C64XX: Fix up IRQ mapping for balblair on Cragganmore
ARM: dts: correct the dw-mshc timing properties as per binding
ARM: S3C64XX: Fix build error with CONFIG_S3C_DEV_FB disabled
+ Linux 3.8-rc3
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'drivers/rtc/rtc-twl.c')
-rw-r--r-- | drivers/rtc/rtc-twl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/rtc/rtc-twl.c b/drivers/rtc/rtc-twl.c index 8b7464c8b5cf..ccd4ad370b32 100644 --- a/drivers/rtc/rtc-twl.c +++ b/drivers/rtc/rtc-twl.c | |||
@@ -458,7 +458,7 @@ static struct rtc_class_ops twl_rtc_ops = { | |||
458 | 458 | ||
459 | /*----------------------------------------------------------------------*/ | 459 | /*----------------------------------------------------------------------*/ |
460 | 460 | ||
461 | static int __devinit twl_rtc_probe(struct platform_device *pdev) | 461 | static int twl_rtc_probe(struct platform_device *pdev) |
462 | { | 462 | { |
463 | struct rtc_device *rtc; | 463 | struct rtc_device *rtc; |
464 | int ret = -EINVAL; | 464 | int ret = -EINVAL; |
@@ -535,7 +535,7 @@ out1: | |||
535 | * Disable all TWL RTC module interrupts. | 535 | * Disable all TWL RTC module interrupts. |
536 | * Sets status flag to free. | 536 | * Sets status flag to free. |
537 | */ | 537 | */ |
538 | static int __devexit twl_rtc_remove(struct platform_device *pdev) | 538 | static int twl_rtc_remove(struct platform_device *pdev) |
539 | { | 539 | { |
540 | /* leave rtc running, but disable irqs */ | 540 | /* leave rtc running, but disable irqs */ |
541 | struct rtc_device *rtc = platform_get_drvdata(pdev); | 541 | struct rtc_device *rtc = platform_get_drvdata(pdev); |
@@ -597,7 +597,7 @@ MODULE_ALIAS("platform:twl_rtc"); | |||
597 | 597 | ||
598 | static struct platform_driver twl4030rtc_driver = { | 598 | static struct platform_driver twl4030rtc_driver = { |
599 | .probe = twl_rtc_probe, | 599 | .probe = twl_rtc_probe, |
600 | .remove = __devexit_p(twl_rtc_remove), | 600 | .remove = twl_rtc_remove, |
601 | .shutdown = twl_rtc_shutdown, | 601 | .shutdown = twl_rtc_shutdown, |
602 | .suspend = twl_rtc_suspend, | 602 | .suspend = twl_rtc_suspend, |
603 | .resume = twl_rtc_resume, | 603 | .resume = twl_rtc_resume, |