aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/s390/scsi/zfcp_aux.c
diff options
context:
space:
mode:
authorChristof Schmitt <christof.schmitt@de.ibm.com>2008-10-01 06:42:15 -0400
committerJames Bottomley <James.Bottomley@HansenPartnership.com>2008-10-03 13:11:52 -0400
commitff3b24fa5370a7ca618f212284d9b36fcedb9c0e (patch)
treed5631509c630046c9d0a42a4e949179976b0ef9f /drivers/s390/scsi/zfcp_aux.c
parent2450d3e7b8604d0abb042817f2502cb7ee0b782f (diff)
[SCSI] zfcp: Update message with input from review
Update the kernel messages in zfcp with input from the message review and remove some messages that have been identified as redundant. Signed-off-by: Christof Schmitt <christof.schmitt@de.ibm.com> Signed-off-by: Swen Schillig <swen@vnet.ibm.com> Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
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