Hi, On Thursday 07 January 2016 08:08 PM, Laxman Dewangan wrote:
Maxim Semiconductor's PMIC MAX77620/MAX20024 has on chip RTC module. This support for setting alarm and time. Add RTC driver to access this chip's RTC module via RTC APIs. Signed-off-by: Laxman Dewangan <ldewangan@xxxxxxxxxx> Signed-off-by: Chaitanya Bandi <bandik@xxxxxxxxxx> Tested-by: Venkat Reddy Talla <vreddytalla@xxxxxxxxxx> --- drivers/rtc/Kconfig | 9 + drivers/rtc/Makefile | 1 + drivers/rtc/rtc-max77620.c | 574 +++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 584 insertions(+) create mode 100644 drivers/rtc/rtc-max77620.c
(...)
+static struct platform_driver max77620_rtc_driver = { + .probe = max77620_rtc_probe, + .remove = max77620_rtc_remove, + .id_table = max77620_rtc_devtype, + .driver = { + .name = "max77620-rtc", + .owner = THIS_MODULE,
Drop this line, .owner will be populated by driver core.
+ .pm = &max77620_rtc_pm_ops, + }, +}; + +module_platform_driver(max77620_rtc_driver); + +MODULE_DESCRIPTION("max77620 RTC driver"); +MODULE_AUTHOR("Chaitanya Bandi <bandik@xxxxxxxxxx>"); +MODULE_AUTHOR("Laxman Dewangan <ldewangan@xxxxxxxxxx>"); +MODULE_ALIAS("platform:max77620-rtc"); +MODULE_LICENSE("GPL v2");
-- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html