[<prev] [next>] [day] [month] [year] [list]
Message-id: <swfac21z6l5.wl%takata.hirokazu@renesas.com>
Date: Wed, 06 Dec 2006 19:01:10 +0900
From: Hirokazu Takata <takata@...ux-m32r.org>
To: Andrew Morton <akpm@...l.org>
Cc: linux-kernel@...r.kernel.org, takata@...ux-m32r.org
Subject: [PATCH 2.6.19] m32r: Fix compile error of m32r_cfc.c
Fix a compile error of m32r_cfc.c.
In pcc_interrupt_wrapper, pcc_interrupt was called with wrong argument number.
Signed-off-by: Hirokazu Takata <takata@...ux-m32r.org>
---
drivers/pcmcia/m32r_cfc.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/pcmcia/m32r_cfc.c b/drivers/pcmcia/m32r_cfc.c
index 36fdaa5..3c22ac4 100644
--- a/drivers/pcmcia/m32r_cfc.c
+++ b/drivers/pcmcia/m32r_cfc.c
@@ -398,7 +398,7 @@ static irqreturn_t pcc_interrupt(int irq, void *dev)
static void pcc_interrupt_wrapper(u_long data)
{
debug(3, "m32r_cfc: pcc_interrupt_wrapper:\n");
- pcc_interrupt(0, NULL, NULL);
+ pcc_interrupt(0, NULL);
init_timer(&poll_timer);
poll_timer.expires = jiffies + poll_interval;
add_timer(&poll_timer);
--
1.4.4.1
--
Hirokazu Takata <takata@...ux-m32r.org>
Linux/M32R Project: http://www.linux-m32r.org/
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists