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.

at cb3421684ee778d60da26232bfea626dca2eb8db 13 lines 336 B view raw
1#ifndef GPIO_REG_H 2#define GPIO_REG_H 3 4struct device; 5struct irq_domain; 6 7struct gpio_chip *gpio_reg_init(struct device *dev, void __iomem *reg, 8 int base, int num, const char *label, u32 direction, u32 def_out, 9 const char *const *names, struct irq_domain *irqdom, const int *irqs); 10 11int gpio_reg_resume(struct gpio_chip *gc); 12 13#endif