[2.6 patch] fix megaraid.c with PROC_FS=n

From: Adrian Bunk
Date: Mon Aug 09 2004 - 10:50:19 EST


I got the following compile error with CONFIG_PROC_FS=n:

<-- snip -->

...
LD .tmp_vmlinux1
drivers/built-in.o(.text+0x524563): In function `megaraid_probe_one':
: undefined reference to `mega_create_proc_entry'
make: *** [.tmp_vmlinux1] Error 1

<-- snip -->


The following patch fixes this issue:


Signed-off-by: Adrian Bunk <bunk@xxxxxxxxx>

--- linux-2.6.8-rc3-mm2-full/drivers/scsi/megaraid.c.old 2004-08-09 17:35:54.000000000 +0200
+++ linux-2.6.8-rc3-mm2-full/drivers/scsi/megaraid.c 2004-08-09 17:39:58.000000000 +0200
@@ -4905,7 +4905,9 @@

pci_set_drvdata(pdev, host);

+#ifdef CONFIG_PROC_FS
mega_create_proc_entry(hba_count, mega_proc_dir_entry);
+#endif

error = scsi_add_host(host, &pdev->dev);
if (error)


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/