We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24921db commit 5d9ad4eCopy full SHA for 5d9ad4e
drivers/hwmon/tmp513.c
@@ -19,15 +19,19 @@
19
* the Free Software Foundation; version 2 of the License.
20
*/
21
22
+#include <linux/bitops.h>
23
+#include <linux/bug.h>
24
+#include <linux/device.h>
25
#include <linux/err.h>
26
#include <linux/hwmon.h>
27
#include <linux/i2c.h>
28
#include <linux/init.h>
-#include <linux/kernel.h>
29
+#include <linux/math.h>
30
#include <linux/module.h>
31
+#include <linux/property.h>
32
#include <linux/regmap.h>
33
#include <linux/slab.h>
-#include <linux/util_macros.h>
34
+#include <linux/types.h>
35
36
// Common register definition
37
#define TMP51X_SHUNT_CONFIG 0x00
0 commit comments