mirror of
https://github.com/torvalds/linux.git
synced 2024-11-12 07:01:57 +00:00
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;
|
||||
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 */
|
||||
|
Loading…
Reference in New Issue
Block a user