All of lore.kernel.org
 help / color / mirror / Atom feed
* [2.6 patch] fix CCISS with PROC_FS=n
@ 2004-08-09 15:34 Adrian Bunk
  2004-08-09 16:07 ` mikem
  0 siblings, 1 reply; 3+ messages in thread
From: Adrian Bunk @ 2004-08-09 15:34 UTC (permalink / raw)
  To: mikem; +Cc: linux-kernel

I got the following compile error in 2.6.8-rc3-mm2 with 
CONFIG_PROC_FS=n:

<--  snip  -->

...
  LD      .tmp_vmlinux1
drivers/built-in.o(.text+0x1b221c): In function `do_cciss_intr':
: undefined reference to `complete_scsi_command'
drivers/built-in.o(.text+0x1b2d18): In function `cciss_init_one':
: undefined reference to `cciss_scsi_setup'
drivers/built-in.o(.text+0x1b2fd3): In function `cciss_remove_one':
: undefined reference to `cciss_unregister_scsi'
make: *** [.tmp_vmlinux1] Error 1

<--  snip  -->


The following patch fixes this issue:


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

--- linux-2.6.8-rc3-mm2-full/drivers/block/cciss.c.old	2004-08-09 17:26:58.000000000 +0200
+++ linux-2.6.8-rc3-mm2-full/drivers/block/cciss.c	2004-08-09 17:27:14.000000000 +0200
@@ -185,10 +185,11 @@
         }
         return c;
 }
-#ifdef CONFIG_PROC_FS
 
 #include "cciss_scsi.c"		/* For SCSI tape support */
 
+#ifdef CONFIG_PROC_FS
+
 /*
  * Report information about this controller.
  */


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

end of thread, other threads:[~2004-08-09 19:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-08-09 15:34 [2.6 patch] fix CCISS with PROC_FS=n Adrian Bunk
2004-08-09 16:07 ` mikem
2004-08-09 19:04   ` Adrian Bunk

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.