summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorDoug Maxey <dwm@enoyolf.org>2006-10-05 23:50:07 -0500
committerJames Bottomley <jejb@mulgrave.il.steeleye.com>2006-10-25 15:12:07 -0700
commit5ae16db36988e811410494fb5d07c81e14453e7b (patch)
tree11a3fe9aa618aa6037f6ff574d813966c49c4351 /drivers
parent75c28851c9eee889ef4347ff6f55b2dd1e1ceb81 (diff)
downloadlinux-5ae16db36988e811410494fb5d07c81e14453e7b.tar.gz
linux-5ae16db36988e811410494fb5d07c81e14453e7b.tar.xz
[SCSI] qla4xxx: fix double printk on load
There is a dup printk at the tail of qla4xxx_module_init(). Remove the first instance as it's before the complete success of the function. Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/scsi/qla4xxx/ql4_os.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/qla4xxx/ql4_os.c b/drivers/scsi/qla4xxx/ql4_os.c
index 178fcddcfd81..4fa01535fb64 100644
--- a/drivers/scsi/qla4xxx/ql4_os.c
+++ b/drivers/scsi/qla4xxx/ql4_os.c
@@ -1724,13 +1724,13 @@ static int __init qla4xxx_module_init(void)
goto release_srb_cache;
}
- printk(KERN_INFO "QLogic iSCSI HBA Driver\n");
ret = pci_register_driver(&qla4xxx_pci_driver);
if (ret)
goto unregister_transport;
printk(KERN_INFO "QLogic iSCSI HBA Driver\n");
return 0;
+
unregister_transport:
iscsi_unregister_transport(&qla4xxx_iscsi_transport);
release_srb_cache: