diff options
author | Wolfram Sang <wsa+renesas@sang-engineering.com> | 2016-05-25 08:37:47 +0200 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2016-07-17 20:54:45 +0200 |
commit | e65c5825c6ef850a26cd449157024bad6e2eec9c (patch) | |
tree | 0ca68ab430f918b9254b830f3820c3e02828248b /drivers/watchdog | |
parent | 44ba0f04af44d7f3a157ee655bdfc53660d8faf9 (diff) | |
download | linux-stable-e65c5825c6ef850a26cd449157024bad6e2eec9c.tar.gz linux-stable-e65c5825c6ef850a26cd449157024bad6e2eec9c.tar.bz2 linux-stable-e65c5825c6ef850a26cd449157024bad6e2eec9c.zip |
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 @@ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt +#include <linux/init.h> +#include <linux/jiffies.h> +#include <linux/kernel.h> #include <linux/module.h> #include <linux/moduleparam.h> -#include <linux/types.h> +#include <linux/reboot.h> #include <linux/timer.h> +#include <linux/types.h> #include <linux/watchdog.h> -#include <linux/reboot.h> -#include <linux/init.h> -#include <linux/jiffies.h> -#include <linux/kernel.h> #define TIMER_MARGIN 60 /* Default is 60 seconds */ static unsigned int soft_margin = TIMER_MARGIN; /* in seconds */ |