aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/libsas/sas_init.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/scsi/libsas/sas_init.c')
-rw-r--r--drivers/scsi/libsas/sas_init.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/scsi/libsas/sas_init.c b/drivers/scsi/libsas/sas_init.c
index a3c25e22b939..221340ee8651 100644
--- a/drivers/scsi/libsas/sas_init.c
+++ b/drivers/scsi/libsas/sas_init.c
@@ -128,19 +128,19 @@ int sas_register_ha(struct sas_ha_struct *sas_ha)
128 128
129 error = sas_register_phys(sas_ha); 129 error = sas_register_phys(sas_ha);
130 if (error) { 130 if (error) {
131 printk(KERN_NOTICE "couldn't register sas phys:%d\n", error); 131 pr_notice("couldn't register sas phys:%d\n", error);
132 return error; 132 return error;
133 } 133 }
134 134
135 error = sas_register_ports(sas_ha); 135 error = sas_register_ports(sas_ha);
136 if (error) { 136 if (error) {
137 printk(KERN_NOTICE "couldn't register sas ports:%d\n", error); 137 pr_notice("couldn't register sas ports:%d\n", error);
138 goto Undo_phys; 138 goto Undo_phys;
139 } 139 }
140 140
141 error = sas_init_events(sas_ha); 141 error = sas_init_events(sas_ha);
142 if (error) { 142 if (error) {
143 printk(KERN_NOTICE "couldn't start event thread:%d\n", error); 143 pr_notice("couldn't start event thread:%d\n", error);
144 goto Undo_ports; 144 goto Undo_ports;
145 } 145 }
146 146