aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rtc/rtc-sun6i.c
diff options
context:
space:
mode:
authorMaxime Ripard <maxime.ripard@free-electrons.com>2017-01-23 11:41:46 +0100
committerAlexandre Belloni <alexandre.belloni@free-electrons.com>2017-01-24 18:45:29 +0100
commit3753941475ae6501dcd1e41832bd0e6c35247d6a (patch)
treea43b863ebb20c137398e40ca8cc4058d617e96f7 /drivers/rtc/rtc-sun6i.c
parentbc7d8ebf37e725ec028e7699e6b497c96678d63a (diff)
downloadlinux-3753941475ae6501dcd1e41832bd0e6c35247d6a.tar.gz
rtc: sun6i: Disable the build as a module
Since we have to provide the clock very early on, the RTC driver cannot be built as a module. Make sure that won't happen. Cc: stable@vger.kernel.org Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Diffstat (limited to 'drivers/rtc/rtc-sun6i.c')
-rw-r--r--drivers/rtc/rtc-sun6i.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/rtc/rtc-sun6i.c b/drivers/rtc/rtc-sun6i.c
index c169a2cd47273..a6136cb99851d 100644
--- a/drivers/rtc/rtc-sun6i.c
+++ b/drivers/rtc/rtc-sun6i.c
@@ -439,9 +439,4 @@ static struct platform_driver sun6i_rtc_driver = {
.of_match_table = sun6i_rtc_dt_ids,
},
};
-
-module_platform_driver(sun6i_rtc_driver);
-
-MODULE_DESCRIPTION("sun6i RTC driver");
-MODULE_AUTHOR("Chen-Yu Tsai <wens@csie.org>");
-MODULE_LICENSE("GPL");
+builtin_platform_driver(sun6i_rtc_driver);