diff options
author | Christophe JAILLET <christophe.jaillet@wanadoo.fr> | 2022-11-05 12:16:54 +0100 |
---|---|---|
committer | Corey Minyard <cminyard@mvista.com> | 2022-11-05 12:42:46 -0500 |
commit | 0eb1762f3c77a20f4a93f29239f0cb0a52d41dd6 (patch) | |
tree | 68d72df642fd2cac708454199049094bce446c3c /drivers/char/ipmi | |
parent | 39721d62bbc16ebc9bb2bdc2c163658f33da3b0b (diff) |
ipmi/watchdog: Include <linux/kstrtox.h> when appropriate
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>
Message-Id: <37daa028845d90ee77f1e547121a051a983fec2e.1667647002.git.christophe.jaillet@wanadoo.fr>
Signed-off-by: Corey Minyard <cminyard@mvista.com>
Diffstat (limited to 'drivers/char/ipmi')
-rw-r--r-- | drivers/char/ipmi/ipmi_watchdog.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/char/ipmi/ipmi_watchdog.c b/drivers/char/ipmi/ipmi_watchdog.c index 5b4e677929ca..47365150e431 100644 --- a/drivers/char/ipmi/ipmi_watchdog.c +++ b/drivers/char/ipmi/ipmi_watchdog.c @@ -23,6 +23,7 @@ #include <linux/init.h> #include <linux/completion.h> #include <linux/kdebug.h> +#include <linux/kstrtox.h> #include <linux/rwsem.h> #include <linux/errno.h> #include <linux/uaccess.h> |