diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2016-05-02 04:31:19 -0400 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2016-05-03 10:02:54 -0400 |
commit | 8c66854b688aa077d127a39a64c71db42d0cf3dd (patch) | |
tree | 8a8868410f787bb84f790f632896a7821afd4094 /arch/m68k/bvme6000 | |
parent | f55532a0c0b8bb6148f4e07853b876ef73bc69ca (diff) |
m68k/bvme6000: Include generic <linux/rtc.h>
The BVME6000 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>
Diffstat (limited to 'arch/m68k/bvme6000')
-rw-r--r-- | arch/m68k/bvme6000/rtc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68k/bvme6000/rtc.c b/arch/m68k/bvme6000/rtc.c index cf12a17dc289..f7984f44ff0f 100644 --- a/arch/m68k/bvme6000/rtc.c +++ b/arch/m68k/bvme6000/rtc.c | |||
@@ -15,7 +15,7 @@ | |||
15 | #include <linux/init.h> | 15 | #include <linux/init.h> |
16 | #include <linux/poll.h> | 16 | #include <linux/poll.h> |
17 | #include <linux/module.h> | 17 | #include <linux/module.h> |
18 | #include <linux/mc146818rtc.h> /* For struct rtc_time and ioctls, etc */ | 18 | #include <linux/rtc.h> /* For struct rtc_time and ioctls, etc */ |
19 | #include <linux/bcd.h> | 19 | #include <linux/bcd.h> |
20 | #include <asm/bvme6000hw.h> | 20 | #include <asm/bvme6000hw.h> |
21 | 21 | ||