diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2013-04-19 07:03:13 -0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2013-06-17 07:54:10 -0400 |
commit | a16b6c630ff8f291639c4cd0f8e57543735a1b5c (patch) | |
tree | c3b16eaa7b7ec17f04735f5acf31a0b5be683104 /drivers/rtc/rtc-coh901331.c | |
parent | 63a62ec09d634bc4a35dd61c513c2df006885a39 (diff) |
rtc: coh901331: add devicetree support
This add devicetree probe support to the COH 901 331 RTC
driver.
Cc: Alessandro Zummo <a.zummo@towertech.it>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/rtc/rtc-coh901331.c')
-rw-r--r-- | drivers/rtc/rtc-coh901331.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/rtc/rtc-coh901331.c b/drivers/rtc/rtc-coh901331.c index 93c06588ddca..ad6863a76af9 100644 --- a/drivers/rtc/rtc-coh901331.c +++ b/drivers/rtc/rtc-coh901331.c | |||
@@ -274,11 +274,17 @@ static void coh901331_shutdown(struct platform_device *pdev) | |||
274 | clk_disable_unprepare(rtap->clk); | 274 | clk_disable_unprepare(rtap->clk); |
275 | } | 275 | } |
276 | 276 | ||
277 | static const struct of_device_id coh901331_dt_match[] = { | ||
278 | { .compatible = "stericsson,coh901331" }, | ||
279 | {}, | ||
280 | }; | ||
281 | |||
277 | static struct platform_driver coh901331_driver = { | 282 | static struct platform_driver coh901331_driver = { |
278 | .driver = { | 283 | .driver = { |
279 | .name = "rtc-coh901331", | 284 | .name = "rtc-coh901331", |
280 | .owner = THIS_MODULE, | 285 | .owner = THIS_MODULE, |
281 | .pm = &coh901331_pm_ops, | 286 | .pm = &coh901331_pm_ops, |
287 | .of_match_table = coh901331_dt_match, | ||
282 | }, | 288 | }, |
283 | .remove = __exit_p(coh901331_remove), | 289 | .remove = __exit_p(coh901331_remove), |
284 | .shutdown = coh901331_shutdown, | 290 | .shutdown = coh901331_shutdown, |