diff options
author | Thomas Gleixner <[email protected]> | 2019-08-19 16:31:43 +0200 |
---|---|---|
committer | Thomas Gleixner <[email protected]> | 2019-08-20 22:09:52 +0200 |
commit | 3758b0f86ef502e2f342055caef6d2232c2558b7 (patch) | |
tree | ff9dae1227de549b4240c0b4a71dfe2d9d992c80 | |
parent | ce03f613461642669d6150c405dd28f4bfd54bbb (diff) |
alarmtimers: Avoid rtc.h include
rtc.h is not needed in alarmtimers when a forward declaration of struct
rtc_device is provided. That allows to include posix-timers.h without
adding more includes to alarmtimer.h or creating circular include
dependencies.
Signed-off-by: Thomas Gleixner <[email protected]>
Reviewed-by: Frederic Weisbecker <[email protected]>
Link: https://lkml.kernel.org/r/[email protected]
-rw-r--r-- | include/linux/alarmtimer.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/alarmtimer.h b/include/linux/alarmtimer.h index 0760ca1cb009..74748e306f4b 100644 --- a/include/linux/alarmtimer.h +++ b/include/linux/alarmtimer.h @@ -5,7 +5,8 @@ #include <linux/time.h> #include <linux/hrtimer.h> #include <linux/timerqueue.h> -#include <linux/rtc.h> + +struct rtc_device; enum alarmtimer_type { ALARM_REALTIME, |