Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
| 2 | #ifndef GPIO_REG_H |
| 3 | #define GPIO_REG_H |
| 4 | |
| 5 | struct device; |
| 6 | struct irq_domain; |
| 7 | |
| 8 | struct gpio_chip *gpio_reg_init(struct device *dev, void __iomem *reg, |
| 9 | int base, int num, const char *label, u32 direction, u32 def_out, |
| 10 | const char *const *names, struct irq_domain *irqdom, const int *irqs); |
| 11 | |
| 12 | int gpio_reg_resume(struct gpio_chip *gc); |
| 13 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 14 | #endif /* GPIO_REG_H */ |