Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

gpio: pca9570: Don't use "proxy" headers

Update header inclusions to follow IWYU (Include What You Use)
principle.

Note that kernel.h is discouraged to be included as it's written
at the top of that file.

Reviewed-by: Linus Walleij <linusw@kernel.org>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20260113111156.188051-3-andriy.shevchenko@linux.intel.com
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>

authored by

Andy Shevchenko and committed by
Bartosz Golaszewski
053578d3 e05ef046

+4
+4
drivers/gpio/gpio-pca9570.c
··· 9 9 * Andrew F. Davis <afd@ti.com> 10 10 */ 11 11 12 + #include <linux/bits.h> 13 + #include <linux/device/devres.h> 14 + #include <linux/errno.h> 12 15 #include <linux/gpio/driver.h> 13 16 #include <linux/i2c.h> 14 17 #include <linux/module.h> 15 18 #include <linux/mutex.h> 16 19 #include <linux/property.h> 20 + #include <linux/types.h> 17 21 18 22 #define SLG7XL45106_GPO_REG 0xDB 19 23