aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rtc/rtc-s3c.c
diff options
context:
space:
mode:
authorHeiko Stuebner <heiko@sntech.de>2011-12-23 20:52:14 -0500
committerKukjin Kim <kgene.kim@samsung.com>2012-02-06 18:03:42 -0500
commitd2524caac3e14af0b95bb428084e0ef355514c2f (patch)
tree6c3b6d7f33aa9d718cd59a600d8bb3c2b0fe013f /drivers/rtc/rtc-s3c.c
parenta51da0444ce720ae496ac3a85f8609a37e43c4f5 (diff)
rtc-s3c: make room for more variants in devicetree block
Use the data field of of_device_id to hold the type for s3c_cpu_type. Signed-off-by: Heiko Stuebner <heiko@sntech.de> Reviewed-by: Thomas Abraham <thomas.abraham@linaro.org> Acked-by: Alessandro Zummo <a.zummo@towertech.it> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'drivers/rtc/rtc-s3c.c')
-rw-r--r--drivers/rtc/rtc-s3c.c31
1 files changed, 22 insertions, 9 deletions
diff --git a/drivers/rtc/rtc-s3c.c b/drivers/rtc/rtc-s3c.c
index aef40bd2957..a6f95fb74dd 100644
--- a/drivers/rtc/rtc-s3c.c
+++ b/drivers/rtc/rtc-s3c.c
@@ -428,6 +428,20 @@ static int __devexit s3c_rtc_remove(struct platform_device *dev)
428 return 0; 428 return 0;
429} 429}
430 430
431static const struct of_device_id s3c_rtc_dt_match[];
432
433static inline int s3c_rtc_get_driver_data(struct platform_device *pdev)
434{
435#ifdef CONFIG_OF
436 if (pdev->dev.of_node) {
437 const struct of_device_id *match;
438 match = of_match_node(s3c_rtc_dt_match, pdev->dev.of_node);
439 return match->data;
440 }
441#endif
442 return platform_get_device_id(pdev)->driver_data;
443}
444
431static int __devinit s3c_rtc_probe(struct platform_device *pdev) 445static int __devinit s3c_rtc_probe(struct platform_device *pdev)
432{ 446{
433 struct rtc_device *rtc; 447 struct rtc_device *rtc;
@@ -508,13 +522,7 @@ static int __devinit s3c_rtc_probe(struct platform_device *pdev)
508 goto err_nortc; 522 goto err_nortc;
509 } 523 }
510 524
511#ifdef CONFIG_OF 525 s3c_rtc_cpu_type = s3c_rtc_get_driver_data(pdev);
512 if (pdev->dev.of_node)
513 s3c_rtc_cpu_type = of_device_is_compatible(pdev->dev.of_node,
514 "samsung,s3c6410-rtc") ? TYPE_S3C64XX : TYPE_S3C2410;
515 else
516#endif
517 s3c_rtc_cpu_type = platform_get_device_id(pdev)->driver_data;
518 526
519 /* Check RTC Time */ 527 /* Check RTC Time */
520 528
@@ -638,8 +646,13 @@ static int s3c_rtc_resume(struct platform_device *pdev)
638 646
639#ifdef CONFIG_OF 647#ifdef CONFIG_OF
640static const struct of_device_id s3c_rtc_dt_match[] = { 648static const struct of_device_id s3c_rtc_dt_match[] = {
641 { .compatible = "samsung,s3c2410-rtc" }, 649 {
642 { .compatible = "samsung,s3c6410-rtc" }, 650 .compatible = "samsung,s3c2410-rtc"
651 .data = TYPE_S3C2410,
652 }, {
653 .compatible = "samsung,s3c6410-rtc"
654 .data = TYPE_S3C64XX,
655 },
643 {}, 656 {},
644}; 657};
645MODULE_DEVICE_TABLE(of, s3c_rtc_dt_match); 658MODULE_DEVICE_TABLE(of, s3c_rtc_dt_match);