aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/mach-at91rm9200/gpio.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@g5.osdl.org>2006-08-02 20:21:23 -0700
committerLinus Torvalds <torvalds@g5.osdl.org>2006-08-02 20:21:23 -0700
commit1398ab7cb92b21d8d5add3bdc25b2c00462cfd5c (patch)
treeecfe847dda816361d83b1da6d7213b27721e7fd7 /arch/arm/mach-at91rm9200/gpio.c
parenta166222cde740b34d97fe49dca70348197f4534e (diff)
parente252630f1fd1d14ac4081e566d2f697ae1779215 (diff)
Merge master.kernel.org:/home/rmk/linux-2.6-arm
* master.kernel.org:/home/rmk/linux-2.6-arm: [ARM] 3743/1: ARM: OMAP: Fix compile for OMAP [ARM] 3739/1: genirq updates: irq_chip, add and use irq_chip.name
Diffstat (limited to 'arch/arm/mach-at91rm9200/gpio.c')
-rw-r--r--arch/arm/mach-at91rm9200/gpio.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-at91rm9200/gpio.c b/arch/arm/mach-at91rm9200/gpio.c
index 5783c282ae7..cec199fd672 100644
--- a/arch/arm/mach-at91rm9200/gpio.c
+++ b/arch/arm/mach-at91rm9200/gpio.c
@@ -327,7 +327,8 @@ static int gpio_irq_type(unsigned pin, unsigned type)
return (type == IRQT_BOTHEDGE) ? 0 : -EINVAL;
}
-static struct irqchip gpio_irqchip = {
+static struct irq_chip gpio_irqchip = {
+ .name = "GPIO",
.mask = gpio_irq_mask,
.unmask = gpio_irq_unmask,
.set_type = gpio_irq_type,