Skip to content

Commit

Permalink
s390/dasd: add missing \n to end of dev_err messages
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Colin Ian King authored and Martin Schwidefsky committed Sep 28, 2016
1 parent fdcebf6 commit 871f8bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/s390/block/dasd_erp.c
Original file line number Diff line number Diff line change
Expand Up @@ -169,12 +169,12 @@ dasd_log_sense(struct dasd_ccw_req *cqr, struct irb *irb)
device = cqr->startdev;
if (cqr->intrc == -ETIMEDOUT) {
dev_err(&device->cdev->dev,
"A timeout error occurred for cqr %p", cqr);
"A timeout error occurred for cqr %p\n", cqr);
return;
}
if (cqr->intrc == -ENOLINK) {
dev_err(&device->cdev->dev,
"A transport error occurred for cqr %p", cqr);
"A transport error occurred for cqr %p\n", cqr);
return;
}
/* dump sense data */
Expand Down

0 comments on commit 871f8bf

Please sign in to comment.