watchdog: Include <linux/kstrtox.h> when appropriate
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Sat, 5 Nov 2022 11:09:34 +0000 (12:09 +0100)
committerWim Van Sebroeck <wim@linux-watchdog.org>
Sat, 18 Feb 2023 14:11:35 +0000 (15:11 +0100)
The kstrto<something>() functions have been moved from kernel.h to
kstrtox.h.

So, in order to eventually remove <linux/kernel.h> from <linux/watchdog.h>,
include the latter directly in the appropriate files.

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Link: https://lore.kernel.org/r/08fd5512e569558231247515c04c8596a1d11004.1667646547.git.christophe.jaillet@wanadoo.fr
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
drivers/watchdog/aspeed_wdt.c
drivers/watchdog/watchdog_dev.c

index 86b5331bc491166bd1eedc89796cecae624b0e7c..c1e79874a2bbc0b2e10496bcda9f74ba4651bb76 100644 (file)
@@ -10,6 +10,7 @@
 #include <linux/interrupt.h>
 #include <linux/io.h>
 #include <linux/kernel.h>
+#include <linux/kstrtox.h>
 #include <linux/module.h>
 #include <linux/of.h>
 #include <linux/of_irq.h>
index 55574ed425042e9405bb2220697bb26c2c5f59cc..f31608f3e3244d4f20300449a3dbe391947da846 100644 (file)
@@ -35,6 +35,7 @@
 #include <linux/init.h>                /* For __init/__exit/... */
 #include <linux/hrtimer.h>     /* For hrtimers */
 #include <linux/kernel.h>      /* For printk/panic/... */
+#include <linux/kstrtox.h>     /* For kstrto* */
 #include <linux/kthread.h>     /* For kthread_work */
 #include <linux/miscdevice.h>  /* For handling misc devices */
 #include <linux/module.h>      /* For module stuff/... */