diff options
author | Alexander Shiyan <shc_work@mail.ru> | 2012-11-17 08:57:16 -0500 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2012-11-21 12:57:43 -0500 |
commit | 49e67de364ea7b2dd69066c95990e686d4de6154 (patch) | |
tree | dc4d8d9d58f2a9feb7bf7fd8e059461171a48b78 /arch/arm/mach-clps711x | |
parent | 197926108cc837474f8807678d6220bdce281620 (diff) |
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')
-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) | |||
66 | clps_writel(intmr1, INTMR1); | 66 | clps_writel(intmr1, INTMR1); |
67 | } | 67 | } |
68 | 68 | ||
69 | static void int1_ack(struct irq_data *d) | ||
70 | { | ||
71 | } | ||
72 | |||
73 | static void int1_eoi(struct irq_data *d) | 69 | static void int1_eoi(struct irq_data *d) |
74 | { | 70 | { |
75 | switch (d->irq) { | 71 | switch (d->irq) { |
@@ -93,7 +89,6 @@ static void int1_unmask(struct irq_data *d) | |||
93 | 89 | ||
94 | static struct irq_chip int1_chip = { | 90 | static struct irq_chip int1_chip = { |
95 | .name = "Interrupt Vector 1", | 91 | .name = "Interrupt Vector 1", |
96 | .irq_ack = int1_ack, | ||
97 | .irq_eoi = int1_eoi, | 92 | .irq_eoi = int1_eoi, |
98 | .irq_mask = int1_mask, | 93 | .irq_mask = int1_mask, |
99 | .irq_unmask = int1_unmask, | 94 | .irq_unmask = int1_unmask, |
@@ -108,10 +103,6 @@ static void int2_mask(struct irq_data *d) | |||
108 | clps_writel(intmr2, INTMR2); | 103 | clps_writel(intmr2, INTMR2); |
109 | } | 104 | } |
110 | 105 | ||
111 | static void int2_ack(struct irq_data *d) | ||
112 | { | ||
113 | } | ||
114 | |||
115 | static void int2_eoi(struct irq_data *d) | 106 | static void int2_eoi(struct irq_data *d) |
116 | { | 107 | { |
117 | switch (d->irq) { | 108 | switch (d->irq) { |
@@ -130,7 +121,6 @@ static void int2_unmask(struct irq_data *d) | |||
130 | 121 | ||
131 | static struct irq_chip int2_chip = { | 122 | static struct irq_chip int2_chip = { |
132 | .name = "Interrupt Vector 2", | 123 | .name = "Interrupt Vector 2", |
133 | .irq_ack = int2_ack, | ||
134 | .irq_eoi = int2_eoi, | 124 | .irq_eoi = int2_eoi, |
135 | .irq_mask = int2_mask, | 125 | .irq_mask = int2_mask, |
136 | .irq_unmask = int2_unmask, | 126 | .irq_unmask = int2_unmask, |