diff options
author | David Brownell <dbrownell@users.sourceforge.net> | 2008-06-10 11:55:52 (GMT) |
---|---|---|
committer | Haavard Skinnemoen <haavard.skinnemoen@atmel.com> | 2008-06-27 13:32:27 (GMT) |
commit | aafafddb01e259cff61b3d3f5b3466f0a6a65b84 (patch) | |
tree | 2b805bef76647a86a157ffa0122a7d08df0ecba0 /arch/avr32/mach-at32ap/pio.c | |
parent | c1f24ac99f3711a6caa0e1d1c01a071ed72a7e0b (diff) | |
download | linux-aafafddb01e259cff61b3d3f5b3466f0a6a65b84.tar.xz |
avr32: minor GPIO handling updates
On the odd chance some code uses a pin as a GPIO IRQ without calling
gpio_request() or gpio_direction_input(), the debug dump should still
show its pin status.
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
Diffstat (limited to 'arch/avr32/mach-at32ap/pio.c')
-rw-r--r-- | arch/avr32/mach-at32ap/pio.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/avr32/mach-at32ap/pio.c b/arch/avr32/mach-at32ap/pio.c index 38a8fa3..60da03b 100644 --- a/arch/avr32/mach-at32ap/pio.c +++ b/arch/avr32/mach-at32ap/pio.c @@ -318,6 +318,8 @@ static void pio_bank_show(struct seq_file *s, struct gpio_chip *chip) const char *label; label = gpiochip_is_requested(chip, i); + if (!label && (imr & mask)) + label = "[irq]"; if (!label) continue; |