Message ID | 20240325124156.3036266-1-andriy.shevchenko@linux.intel.com (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
Series | [v1,1/1] hwmon: pmbus: adp1050: Don't use "proxy" headers | expand |
On Mon, Mar 25, 2024 at 02:41:56PM +0200, Andy Shevchenko wrote: > Update header inclusions to follow IWYU (Include What You Use) > principle. > > Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Applied. Thanks, Guenter
diff --git a/drivers/hwmon/pmbus/adp1050.c b/drivers/hwmon/pmbus/adp1050.c index 0a49bea8e13b..ea08554662d5 100644 --- a/drivers/hwmon/pmbus/adp1050.c +++ b/drivers/hwmon/pmbus/adp1050.c @@ -5,12 +5,10 @@ * Copyright (C) 2024 Analog Devices, Inc. */ #include <linux/bits.h> -#include <linux/err.h> #include <linux/i2c.h> -#include <linux/init.h> -#include <linux/kernel.h> +#include <linux/mod_devicetable.h> #include <linux/module.h> -#include <linux/of.h> + #include "pmbus.h" static struct pmbus_driver_info adp1050_info = {
Update header inclusions to follow IWYU (Include What You Use) principle. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> --- drivers/hwmon/pmbus/adp1050.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-)