[PATCH v1 1/2] ACPI: fan: Don't use "proxy" headers
Andy Shevchenko <[email protected]>
| Newsgroups | org.kernel.vger.linux-acpi,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <[email protected]> |
Update header inclusions to follow IWYU (Include What You Use) principle. Signed-off-by: Andy Shevchenko <[email protected]> --- drivers/acpi/fan.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/acpi/fan.h b/drivers/acpi/fan.h index 97ce3212edf3..e06c055a8bb6 100644 --- a/drivers/acpi/fan.h +++ b/drivers/acpi/fan.h @@ -10,8 +10,9 @@ #ifndef _ACPI_FAN_H_ #define _ACPI_FAN_H_ -#include <linux/kconfig.h> +#include <linux/device.h> #include <linux/limits.h> +#include <linux/types.h> #define ACPI_FAN_DEVICE_IDS \ {"INT3404", }, /* Fan */ \ -- 2.50.1