s390/dasd: add missing \n to end of dev_err messages
Trival fix, dev_err messages are missing a \n, so add it. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
parent
fdcebf6f18
commit
871f8bf0c4
@ -169,12 +169,12 @@ 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,
|
dev_err(&device->cdev->dev,
|
||||||
"A timeout error occurred for cqr %p", cqr);
|
"A timeout error occurred for cqr %p\n", cqr);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (cqr->intrc == -ENOLINK) {
|
if (cqr->intrc == -ENOLINK) {
|
||||||
dev_err(&device->cdev->dev,
|
dev_err(&device->cdev->dev,
|
||||||
"A transport error occurred for cqr %p", cqr);
|
"A transport error occurred for cqr %p\n", cqr);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
/* dump sense data */
|
/* dump sense data */
|
||||||
|
Loading…
Reference in New Issue
Block a user