diff options
author | Alexander Shiyan <shc_work@mail.ru> | 2012-11-17 17:57:16 +0400 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2012-11-21 09:57:43 -0800 |
commit | 49e67de364ea7b2dd69066c95990e686d4de6154 (patch) | |
tree | dc4d8d9d58f2a9feb7bf7fd8e059461171a48b78 /arch/arm/mach-clps711x/common.c | |
parent | 197926108cc837474f8807678d6220bdce281620 (diff) | |
download | blackbird-op-linux-49e67de364ea7b2dd69066c95990e686d4de6154.tar.gz blackbird-op-linux-49e67de364ea7b2dd69066c95990e686d4de6154.zip |
ARM: clps711x: Unused empty "ACK" calls for IRQ-chips removed
Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/mach-clps711x/common.c')
-rw-r--r-- | arch/arm/mach-clps711x/common.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/arch/arm/mach-clps711x/common.c b/arch/arm/mach-clps711x/common.c index fcdcd91ea107..e046439573ee 100644 --- a/arch/arm/mach-clps711x/common.c +++ b/arch/arm/mach-clps711x/common.c @@ -66,10 +66,6 @@ static void int1_mask(struct irq_data *d) clps_writel(intmr1, INTMR1); } -static void int1_ack(struct irq_data *d) -{ -} - static void int1_eoi(struct irq_data *d) { switch (d->irq) { @@ -93,7 +89,6 @@ static void int1_unmask(struct irq_data *d) static struct irq_chip int1_chip = { .name = "Interrupt Vector 1", - .irq_ack = int1_ack, .irq_eoi = int1_eoi, .irq_mask = int1_mask, .irq_unmask = int1_unmask, @@ -108,10 +103,6 @@ static void int2_mask(struct irq_data *d) clps_writel(intmr2, INTMR2); } -static void int2_ack(struct irq_data *d) -{ -} - static void int2_eoi(struct irq_data *d) { switch (d->irq) { @@ -130,7 +121,6 @@ static void int2_unmask(struct irq_data *d) static struct irq_chip int2_chip = { .name = "Interrupt Vector 2", - .irq_ack = int2_ack, .irq_eoi = int2_eoi, .irq_mask = int2_mask, .irq_unmask = int2_unmask, |