public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [2.6 patch] drivers/pcmcia/m32r_cfc.c: fix compilation
@ 2006-12-02 17:55 Adrian Bunk
  2006-12-02 21:11 ` Dominik Brodowski
  0 siblings, 1 reply; 2+ messages in thread
From: Adrian Bunk @ 2006-12-02 17:55 UTC (permalink / raw)
  To: linux-pcmcia; +Cc: linux-kernel

More fallout of the post 2.6.19-rc1 IRQ changes...

<--  snip  -->

...
  CC      drivers/pcmcia/m32r_cfc.o
In function 'pcc_interrupt_wrapper':
/home/bunk/linux/kernel-2.6/linux-2.6.19-rc6-mm2/drivers/pcmcia/m32r_cfc.c:401: 
error: too many arguments to function 'pcc_interrupt'
make[3]: *** [drivers/pcmcia/m32r_cfc.o] Error 1

<--  snip  -->

Signed-off-by: Adrian Bunk <bunk@stusta.de>

--- linux-2.6.19-rc6-mm2/drivers/pcmcia/m32r_cfc.c.old	2006-12-02 18:40:16.000000000 +0100
+++ linux-2.6.19-rc6-mm2/drivers/pcmcia/m32r_cfc.c	2006-12-02 18:40:41.000000000 +0100
@@ -398,7 +398,7 @@
 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);


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2006-12-02 21:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-12-02 17:55 [2.6 patch] drivers/pcmcia/m32r_cfc.c: fix compilation Adrian Bunk
2006-12-02 21:11 ` Dominik Brodowski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox