public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2.6.0-test3] compile fix for driver/block/paride/pd.c
@ 2003-08-09  9:39 Vinay K Nallamothu
  2003-08-09  9:28 ` Nick Piggin
  0 siblings, 1 reply; 3+ messages in thread
From: Vinay K Nallamothu @ 2003-08-09  9:39 UTC (permalink / raw)
  To: trivial; +Cc: LKML

This patch removes the extra argument to blk_init_queue which prevents
the module from compiling.


--- linux-2.6.0-test3/drivers/block/paride/pd.c	2003-07-28 10:43:52.000000000 +0530
+++ linux-2.6.0-test3-nvk/drivers/block/paride/pd.c	2003-08-09 15:02:19.000000000 +0530
@@ -893,7 +893,7 @@
 	if (register_blkdev(major, name))
 		return -1;
 
-	blk_init_queue(&pd_queue, do_pd_request, &pd_lock);
+	blk_init_queue(do_pd_request, &pd_lock);
 	blk_queue_max_sectors(&pd_queue, cluster);
 
 	printk("%s: %s version %s, major %d, cluster %d, nice %d\n",




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

end of thread, other threads:[~2003-08-09 10:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-08-09  9:39 [PATCH 2.6.0-test3] compile fix for driver/block/paride/pd.c Vinay K Nallamothu
2003-08-09  9:28 ` Nick Piggin
2003-08-09 10:33   ` Vinay K Nallamothu

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