aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon
diff options
context:
space:
mode:
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>2022-06-03 22:51:46 +0200
committerGuenter Roeck <linux@roeck-us.net>2022-07-13 08:38:19 -0700
commit39397ba8a7ec46b2b2553886056acabae1ef7a40 (patch)
treebfbbc50cad62cb5f5dc1bdf948f86f0ec1f08623 /drivers/hwmon
parenthwmon: (f71882fg) Add support for F71858AD (0x0903) (diff)
downloadlinux-dev-39397ba8a7ec46b2b2553886056acabae1ef7a40.tar.xz
linux-dev-39397ba8a7ec46b2b2553886056acabae1ef7a40.zip
hwmon: (lm75) Replace kernel.h with the necessary inclusions
When kernel.h is used in the headers it adds a lot into dependency hell, especially when there are circular dependencies are involved. Replace kernel.h inclusion with the list of what is really being used. Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Link: https://lore.kernel.org/r/4e07ed43274ad912d4efcfc04f673f25e8f89fdc.1654289489.git.christophe.jaillet@wanadoo.fr Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon')
-rw-r--r--drivers/hwmon/lm75.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/hwmon/lm75.h b/drivers/hwmon/lm75.h
index a398171162a8..b803ada5e3c9 100644
--- a/drivers/hwmon/lm75.h
+++ b/drivers/hwmon/lm75.h
@@ -11,7 +11,8 @@
* which contains this code, we don't worry about the wasted space.
*/
-#include <linux/kernel.h>
+#include <linux/minmax.h>
+#include <linux/types.h>
/* straight from the datasheet */
#define LM75_TEMP_MIN (-55000)