aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mfd/asic3.c
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@gmail.com>2011-04-14 22:43:47 +0800
committerSamuel Ortiz <sameo@linux.intel.com>2011-05-11 11:09:57 +0200
commita09aee8b636a3b2b7b10ad57d60d91e9272e771d (patch)
tree109ea647a990df912bcb943747e64db65ac71c28 /drivers/mfd/asic3.c
parentmfd: Fixed gpio polarity of omap-usb gpio USB-phy reset (diff)
downloadlinux-dev-a09aee8b636a3b2b7b10ad57d60d91e9272e771d.tar.xz
linux-dev-a09aee8b636a3b2b7b10ad57d60d91e9272e771d.zip
mfd: Fix asic3 build error
Fix below compile error: CC drivers/mfd/asic3.o drivers/mfd/asic3.c: In function 'asic3_irq_demux': drivers/mfd/asic3.c:147: error: 'irq_data' undeclared (first use in this function) drivers/mfd/asic3.c:147: error: (Each undeclared identifier is reported only once drivers/mfd/asic3.c:147: error: for each function it appears in.) Signed-off-by: Axel Lin <axel.lin@gmail.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/mfd/asic3.c')
-rw-r--r--drivers/mfd/asic3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/asic3.c b/drivers/mfd/asic3.c
index d4a851c6b5bf..0b4d5b23bec9 100644
--- a/drivers/mfd/asic3.c
+++ b/drivers/mfd/asic3.c
@@ -144,7 +144,7 @@ static void asic3_irq_demux(unsigned int irq, struct irq_desc *desc)
int iter, i;
unsigned long flags;
- data->chip->irq_ack(irq_data);
+ data->chip->irq_ack(data);
for (iter = 0 ; iter < MAX_ASIC_ISR_LOOPS; iter++) {
u32 status;