From: Laxman Dewangan Date: Tue, 26 Mar 2013 23:25:45 +0000 (+1100) Subject: drivers/rtc/rtc-palmas.c: add dt support X-Git-Tag: next-20130404~3^2~155 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=fef2dcd752b5eab646c04ba65252ea326ce7fe34;p=karo-tx-linux.git drivers/rtc/rtc-palmas.c: add dt support Add of_device_id table for Palma RTC to be enable the driver from DT file. The driver can be registered from DT file as: palmas: tps65913@58 { ::::::::::: palmas_rtc { compatible = "ti,palmas-rtc"; interrupt-parent = <&palmas>; interrupts = <8 0>; }; }; Signed-off-by: Laxman Dewangan Signed-off-by: Andrew Morton --- diff --git a/drivers/rtc/rtc-palmas.c b/drivers/rtc/rtc-palmas.c index bbc3b9efdeb2..50204d474eb7 100644 --- a/drivers/rtc/rtc-palmas.c +++ b/drivers/rtc/rtc-palmas.c @@ -30,6 +30,7 @@ #include #include #include +#include #include #include #include @@ -316,6 +317,14 @@ static const struct dev_pm_ops palmas_rtc_pm_ops = { SET_SYSTEM_SLEEP_PM_OPS(palmas_rtc_suspend, palmas_rtc_resume) }; +#ifdef CONFIG_OF +static struct of_device_id of_palmas_rtc_match[] = { + { .compatible = "ti,palmas-rtc"}, + { }, +}; +MODULE_DEVICE_TABLE(of, of_palmas_rtc_match); +#endif + static struct platform_driver palmas_rtc_driver = { .probe = palmas_rtc_probe, .remove = palmas_rtc_remove, @@ -323,6 +332,7 @@ static struct platform_driver palmas_rtc_driver = { .owner = THIS_MODULE, .name = "palmas-rtc", .pm = &palmas_rtc_pm_ops, + .of_match_table = of_match_ptr(of_palmas_rtc_match), }, };