diff options
author | Christophe JAILLET <christophe.jaillet@wanadoo.fr> | 2022-11-06 20:34:16 +0100 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2022-12-05 01:45:02 +0100 |
commit | 25f986887dd54a93edcc5cb499b2e42f4d9c359c (patch) | |
tree | 6cc3903df75ea1dd1b8af9772acbb01fd8e96c75 /drivers/hwmon/pmbus | |
parent | docs: hwmon: (smpro-hwmon) Improve grammar and formatting (diff) | |
download | linux-25f986887dd54a93edcc5cb499b2e42f4d9c359c.tar.xz linux-25f986887dd54a93edcc5cb499b2e42f4d9c359c.zip |
hwmon: Include <linux/kstrtox.h> when appropriate
The kstrto<something>() functions have been moved from kernel.h to
kstrtox.h.
So, include the latter directly in the appropriate files.
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Link: https://lore.kernel.org/r/51688cf50bda44e2731381a31287c62319388783.1667763218.git.christophe.jaillet@wanadoo.fr
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/pmbus')
-rw-r--r-- | drivers/hwmon/pmbus/q54sj108a2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/hwmon/pmbus/q54sj108a2.c b/drivers/hwmon/pmbus/q54sj108a2.c index fa298b4265a1..d3ba12951324 100644 --- a/drivers/hwmon/pmbus/q54sj108a2.c +++ b/drivers/hwmon/pmbus/q54sj108a2.c @@ -8,6 +8,7 @@ #include <linux/debugfs.h> #include <linux/i2c.h> +#include <linux/kstrtox.h> #include <linux/module.h> #include <linux/of_device.h> #include "pmbus.h" |