diff options
author | Stefan Weinhuber <wein@de.ibm.com> | 2013-06-14 04:24:25 -0400 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2013-08-22 06:20:01 -0400 |
commit | 0ea46b0e371e3ccc0ce666c4988a7961e4ffa8ec (patch) | |
tree | 7d26efb758e196c5314ae22c43446265f4c14181 | |
parent | 958d9072b691ecd99c5d7c01939edfc6f8ba0269 (diff) |
s390/dasd: cleanup timeout and transport error messages
Just a small update to the wording of the messages, to bring them
more in line with our other messages.
Signed-off-by: Stefan Weinhuber <wein@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
-rw-r--r-- | drivers/s390/block/dasd_erp.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/s390/block/dasd_erp.c b/drivers/s390/block/dasd_erp.c index 8d11f773a752..ba99b64e2b3f 100644 --- a/drivers/s390/block/dasd_erp.c +++ b/drivers/s390/block/dasd_erp.c | |||
@@ -160,11 +160,13 @@ dasd_log_sense(struct dasd_ccw_req *cqr, struct irb *irb) | |||
160 | 160 | ||
161 | device = cqr->startdev; | 161 | device = cqr->startdev; |
162 | if (cqr->intrc == -ETIMEDOUT) { | 162 | if (cqr->intrc == -ETIMEDOUT) { |
163 | dev_err(&device->cdev->dev, "cqr %p timeout error", cqr); | 163 | dev_err(&device->cdev->dev, |
164 | "A timeout error occurred for cqr %p", cqr); | ||
164 | return; | 165 | return; |
165 | } | 166 | } |
166 | if (cqr->intrc == -ENOLINK) { | 167 | if (cqr->intrc == -ENOLINK) { |
167 | dev_err(&device->cdev->dev, "cqr %p transport error", cqr); | 168 | dev_err(&device->cdev->dev, |
169 | "A transport error occurred for cqr %p", cqr); | ||
168 | return; | 170 | return; |
169 | } | 171 | } |
170 | /* dump sense data */ | 172 | /* dump sense data */ |