diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2016-05-02 04:32:24 -0400 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2016-05-03 10:02:59 -0400 |
commit | 9a6462763b170bd22be707d5d9e2b8ba8cc4028e (patch) | |
tree | 0e26fab81e2054fab0a44aed37936e220a5768ad | |
parent | 8c66854b688aa077d127a39a64c71db42d0cf3dd (diff) |
m68k/mvme16x: Include generic <linux/rtc.h>
The MVME16x RTC driver doesn't use any MC146818-specific definitions,
hence include the generic <linux/rtc.h> instead of
<linux/mc146818rtc.h>.
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
-rw-r--r-- | arch/m68k/mvme16x/rtc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68k/mvme16x/rtc.c b/arch/m68k/mvme16x/rtc.c index 1755e2f7137d..1cdc73268188 100644 --- a/arch/m68k/mvme16x/rtc.c +++ b/arch/m68k/mvme16x/rtc.c | |||
@@ -14,7 +14,7 @@ | |||
14 | #include <linux/fcntl.h> | 14 | #include <linux/fcntl.h> |
15 | #include <linux/init.h> | 15 | #include <linux/init.h> |
16 | #include <linux/poll.h> | 16 | #include <linux/poll.h> |
17 | #include <linux/mc146818rtc.h> /* For struct rtc_time and ioctls, etc */ | 17 | #include <linux/rtc.h> /* For struct rtc_time and ioctls, etc */ |
18 | #include <linux/bcd.h> | 18 | #include <linux/bcd.h> |
19 | #include <asm/mvme16xhw.h> | 19 | #include <asm/mvme16xhw.h> |
20 | 20 | ||