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>
This commit is contained in:
parent
958d9072b6
commit
0ea46b0e37
1 changed files with 4 additions and 2 deletions
|
@ -160,11 +160,13 @@ dasd_log_sense(struct dasd_ccw_req *cqr, struct irb *irb)
|
||||||
|
|
||||||
device = cqr->startdev;
|
device = cqr->startdev;
|
||||||
if (cqr->intrc == -ETIMEDOUT) {
|
if (cqr->intrc == -ETIMEDOUT) {
|
||||||
dev_err(&device->cdev->dev, "cqr %p timeout error", cqr);
|
dev_err(&device->cdev->dev,
|
||||||
|
"A timeout error occurred for cqr %p", cqr);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (cqr->intrc == -ENOLINK) {
|
if (cqr->intrc == -ENOLINK) {
|
||||||
dev_err(&device->cdev->dev, "cqr %p transport error", cqr);
|
dev_err(&device->cdev->dev,
|
||||||
|
"A transport error occurred for cqr %p", cqr);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
/* dump sense data */
|
/* dump sense data */
|
||||||
|
|
Loading…
Add table
Reference in a new issue