diff options
| author | Ilpo Järvinen <[email protected]> | 2023-01-16 12:08:35 +0200 |
|---|---|---|
| committer | Lee Jones <[email protected]> | 2023-01-27 10:27:40 +0000 |
| commit | 206351c5c2d9906b0304c5b10d5162707d5d4bcb (patch) | |
| tree | 2eed6c410cf13702994d3f6ed658a07278e07684 /include/linux/mfd | |
| parent | 1b929c02afd37871d5afb9d498426f83432e71c2 (diff) | |
mfd: intel-m10-bmc: Add missing includes to header
linux/mfd/intel-m10-bmc.h is using:
- pr_err(), thus include also linux/dev_printk.h
- FIELD_GET(), this include also linux/bitfield.h
- GENMASK(), thus include also linux/bits.h
Signed-off-by: Ilpo Järvinen <[email protected]>
Reviewed-by: Russ Weight <[email protected]>
Reviewed-by: Xu Yilun <[email protected]>
Signed-off-by: Lee Jones <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'include/linux/mfd')
| -rw-r--r-- | include/linux/mfd/intel-m10-bmc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/mfd/intel-m10-bmc.h b/include/linux/mfd/intel-m10-bmc.h index f0044b14136e..0d4db5d9d5af 100644 --- a/include/linux/mfd/intel-m10-bmc.h +++ b/include/linux/mfd/intel-m10-bmc.h @@ -7,6 +7,9 @@ #ifndef __MFD_INTEL_M10_BMC_H #define __MFD_INTEL_M10_BMC_H +#include <linux/bitfield.h> +#include <linux/bits.h> +#include <linux/dev_printk.h> #include <linux/regmap.h> #define M10BMC_LEGACY_BUILD_VER 0x300468 |