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

gpio: reg: Add missing header(s)

Do not imply that some of the generic headers may be always included.
Instead, include explicitly what we are direct user of.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>

+4
+4
include/linux/gpio/gpio-reg.h
··· 2 2 #ifndef GPIO_REG_H 3 3 #define GPIO_REG_H 4 4 5 + #include <linux/types.h> 6 + 5 7 struct device; 6 8 struct irq_domain; 9 + 10 + struct gpio_chip; 7 11 8 12 struct gpio_chip *gpio_reg_init(struct device *dev, void __iomem *reg, 9 13 int base, int num, const char *label, u32 direction, u32 def_out,