diff options
author | Wolfram Sang <wsa+renesas@sang-engineering.com> | 2016-05-25 02:37:47 -0400 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2016-07-17 14:54:45 -0400 |
commit | e65c5825c6ef850a26cd449157024bad6e2eec9c (patch) | |
tree | 0ca68ab430f918b9254b830f3820c3e02828248b /drivers/watchdog | |
parent | 44ba0f04af44d7f3a157ee655bdfc53660d8faf9 (diff) |
watchdog: softdog: sort includes to avoid duplicates
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r-- | drivers/watchdog/softdog.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/watchdog/softdog.c b/drivers/watchdog/softdog.c index 42faa3d424d5..ab0e02fc81a2 100644 --- a/drivers/watchdog/softdog.c +++ b/drivers/watchdog/softdog.c | |||
@@ -21,15 +21,15 @@ | |||
21 | 21 | ||
22 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | 22 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
23 | 23 | ||
24 | #include <linux/init.h> | ||
25 | #include <linux/jiffies.h> | ||
26 | #include <linux/kernel.h> | ||
24 | #include <linux/module.h> | 27 | #include <linux/module.h> |
25 | #include <linux/moduleparam.h> | 28 | #include <linux/moduleparam.h> |
26 | #include <linux/types.h> | 29 | #include <linux/reboot.h> |
27 | #include <linux/timer.h> | 30 | #include <linux/timer.h> |
31 | #include <linux/types.h> | ||
28 | #include <linux/watchdog.h> | 32 | #include <linux/watchdog.h> |
29 | #include <linux/reboot.h> | ||
30 | #include <linux/init.h> | ||
31 | #include <linux/jiffies.h> | ||
32 | #include <linux/kernel.h> | ||
33 | 33 | ||
34 | #define TIMER_MARGIN 60 /* Default is 60 seconds */ | 34 | #define TIMER_MARGIN 60 /* Default is 60 seconds */ |
35 | static unsigned int soft_margin = TIMER_MARGIN; /* in seconds */ | 35 | static unsigned int soft_margin = TIMER_MARGIN; /* in seconds */ |