Commit aefd59bb authored by James Bottomley's avatar James Bottomley

Add back SCSI subsystem initialisation prints

parent 1e2332b2
...@@ -36,9 +36,6 @@ ...@@ -36,9 +36,6 @@
* out_of_space hacks, D. Gilbert (dpg) 990608 * out_of_space hacks, D. Gilbert (dpg) 990608
*/ */
#define REVISION "Revision: 1.00"
#define VERSION "Id: scsi.c 1.00 2000/09/26"
#include <linux/config.h> #include <linux/config.h>
#include <linux/module.h> #include <linux/module.h>
...@@ -1499,6 +1496,7 @@ static int __init init_scsi(void) ...@@ -1499,6 +1496,7 @@ static int __init init_scsi(void)
scsi_host_init(); scsi_host_init();
devfs_mk_dir(NULL, "scsi", NULL); devfs_mk_dir(NULL, "scsi", NULL);
open_softirq(SCSI_SOFTIRQ, scsi_softirq, NULL); open_softirq(SCSI_SOFTIRQ, scsi_softirq, NULL);
printk(KERN_NOTICE "SCSI subsystem initialized\n");
return 0; return 0;
cleanup_devlist: cleanup_devlist:
...@@ -1507,6 +1505,8 @@ static int __init init_scsi(void) ...@@ -1507,6 +1505,8 @@ static int __init init_scsi(void)
scsi_exit_procfs(); scsi_exit_procfs();
cleanup_queue: cleanup_queue:
scsi_exit_queue(); scsi_exit_queue();
printk(KERN_ERR "SCSI subsystem failed to initialize, error = %d\n",
-error);
return error; return error;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment