aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/s390/scsi/zfcp_aux.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/s390/scsi/zfcp_aux.c')
-rw-r--r--drivers/s390/scsi/zfcp_aux.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/s390/scsi/zfcp_aux.c b/drivers/s390/scsi/zfcp_aux.c
index 90abfd06ed55..a8c965b6f744 100644
--- a/drivers/s390/scsi/zfcp_aux.c
+++ b/drivers/s390/scsi/zfcp_aux.c
@@ -100,8 +100,7 @@ static int __init zfcp_device_setup(char *devstr)
100 100
101 err_out: 101 err_out:
102 kfree(str); 102 kfree(str);
103 pr_err("zfcp: Parse error for device parameter string %s, " 103 pr_err("zfcp: %s is not a valid SCSI device\n", devstr);
104 "device not attached.\n", devstr);
105 return 0; 104 return 0;
106} 105}
107 106
@@ -193,13 +192,14 @@ static int __init zfcp_module_init(void)
193 192
194 retval = misc_register(&zfcp_cfdc_misc); 193 retval = misc_register(&zfcp_cfdc_misc);
195 if (retval) { 194 if (retval) {
196 pr_err("zfcp: registration of misc device zfcp_cfdc failed\n"); 195 pr_err("zfcp: Registering the misc device zfcp_cfdc failed\n");
197 goto out_misc; 196 goto out_misc;
198 } 197 }
199 198
200 retval = zfcp_ccw_register(); 199 retval = zfcp_ccw_register();
201 if (retval) { 200 if (retval) {
202 pr_err("zfcp: Registration with common I/O layer failed.\n"); 201 pr_err("zfcp: The zfcp device driver could not register with "
202 "the common I/O layer\n");
203 goto out_ccw_register; 203 goto out_ccw_register;
204 } 204 }
205 205