This may fix it. (It's not tested)
Regards Michael Buesch.
--- drivers/block/ps2esdi.c.orig 2003-04-08 20:50:17.000000000 +0200
+++ drivers/block/ps2esdi.c 2003-04-08 20:52:43.000000000 +0200
@@ -165,7 +165,6 @@
return 0;
} /* ps2esdi_init */
-module_init(ps2esdi_init);
#ifdef MODULE
@@ -200,6 +199,8 @@
void
cleanup_module(void) {
+ int i;
+
if(ps2esdi_slot) {
mca_mark_as_unused(ps2esdi_slot);
mca_set_adapter_procfn(ps2esdi_slot, NULL, NULL);
@@ -214,6 +215,8 @@
put_disk(ps2esdi_gendisk[i]);
}
}
+#else /* MODULE */
+module_init(ps2esdi_init);
#endif /* MODULE */
/* handles boot time command line parameters */
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/