rtc: Fix module autoload for OF platform drivers
authorJavier Martinez Canillas <javier@osg.samsung.com>
Thu, 27 Aug 2015 11:52:02 +0000 (13:52 +0200)
committerAlexandre Belloni <alexandre.belloni@free-electrons.com>
Sat, 5 Sep 2015 17:37:22 +0000 (19:37 +0200)
These platform drivers have a OF device ID table but the OF module
alias information is not created so module autoloading won't work.

Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Acked-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
drivers/rtc/rtc-armada38x.c
drivers/rtc/rtc-coh901331.c
drivers/rtc/rtc-da9063.c
drivers/rtc/rtc-moxart.c
drivers/rtc/rtc-mpc5121.c
drivers/rtc/rtc-mt6397.c
drivers/rtc/rtc-mv.c
drivers/rtc/rtc-vt8500.c

index 06c6bd5..9a3f2a6 100644 (file)
@@ -295,6 +295,7 @@ static const struct of_device_id armada38x_rtc_of_match_table[] = {
        { .compatible = "marvell,armada-380-rtc", },
        {}
 };
+MODULE_DEVICE_TABLE(of, armada38x_rtc_of_match_table);
 #endif
 
 static struct platform_driver armada38x_rtc_driver = {
index 56343b2..101b7a2 100644 (file)
@@ -263,6 +263,7 @@ static const struct of_device_id coh901331_dt_match[] = {
        { .compatible = "stericsson,coh901331" },
        {},
 };
+MODULE_DEVICE_TABLE(of, coh901331_dt_match);
 
 static struct platform_driver coh901331_driver = {
        .driver = {
index 5f38a5c..00a8f7f 100644 (file)
@@ -169,6 +169,7 @@ static const struct of_device_id da9063_compatible_reg_id_table[] = {
        { .compatible = "dlg,da9062-rtc", .data = &da9062_aa_regs },
        { },
 };
+MODULE_DEVICE_TABLE(of, da9063_compatible_reg_id_table);
 
 static void da9063_data_to_tm(u8 *data, struct rtc_time *tm,
                              struct da9063_compatible_rtc *rtc)
index 73759c9..07b30a3 100644 (file)
@@ -312,6 +312,7 @@ static const struct of_device_id moxart_rtc_match[] = {
        { .compatible = "moxa,moxart-rtc" },
        { },
 };
+MODULE_DEVICE_TABLE(of, moxart_rtc_match);
 
 static struct platform_driver moxart_rtc_driver = {
        .probe  = moxart_rtc_probe,
index 1767e18..4ca4daa 100644 (file)
@@ -406,6 +406,7 @@ static const struct of_device_id mpc5121_rtc_match[] = {
        { .compatible = "fsl,mpc5200-rtc", },
        {},
 };
+MODULE_DEVICE_TABLE(of, mpc5121_rtc_match);
 #endif
 
 static struct platform_driver mpc5121_rtc_driver = {
index 30c926b..06a5c52 100644 (file)
@@ -402,6 +402,7 @@ static const struct of_device_id mt6397_rtc_of_match[] = {
        { .compatible = "mediatek,mt6397-rtc", },
        { }
 };
+MODULE_DEVICE_TABLE(of, mt6397_rtc_of_match);
 
 static struct platform_driver mtk_rtc_driver = {
        .driver = {
index 7f50d2e..79bb286 100644 (file)
@@ -324,6 +324,7 @@ static const struct of_device_id rtc_mv_of_match_table[] = {
        { .compatible = "marvell,orion-rtc", },
        {}
 };
+MODULE_DEVICE_TABLE(of, rtc_mv_of_match_table);
 #endif
 
 static struct platform_driver mv_rtc_driver = {
index a58b6d1..27e8969 100644 (file)
@@ -271,6 +271,7 @@ static const struct of_device_id wmt_dt_ids[] = {
        { .compatible = "via,vt8500-rtc", },
        {}
 };
+MODULE_DEVICE_TABLE(of, wmt_dt_ids);
 
 static struct platform_driver vt8500_rtc_driver = {
        .probe          = vt8500_rtc_probe,