mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-16 13:41:48 -04:00
ata: pata_arasan_cf: fix missing newline in dev_err() messages
Add missing trailing newlines to dev_err() messages in pata_arasan_cf.c. This keeps the error output as properly terminated log lines. Acked-by: Viresh Kumar <vireshk@kernel.org> Signed-off-by: Haoyu Lu <hechushiguitu666@gmail.com> Reviewed-by: Damien Le Moal <dlemoal@kernel.org> Signed-off-by: Niklas Cassel <cassel@kernel.org>
This commit is contained in:
@@ -380,7 +380,7 @@ static inline int wait4buf(struct arasan_cf_dev *acdev)
|
||||
if (!wait_for_completion_timeout(&acdev->cf_completion, TIMEOUT)) {
|
||||
u32 rw = acdev->qc->tf.flags & ATA_TFLAG_WRITE;
|
||||
|
||||
dev_err(acdev->host->dev, "%s TimeOut", rw ? "write" : "read");
|
||||
dev_err(acdev->host->dev, "%s TimeOut\n", rw ? "write" : "read");
|
||||
return -ETIMEDOUT;
|
||||
}
|
||||
|
||||
@@ -474,7 +474,7 @@ static int sg_xfer(struct arasan_cf_dev *acdev, struct scatterlist *sg)
|
||||
dma_len = min(xfer_cnt, FIFO_SIZE);
|
||||
ret = dma_xfer(acdev, src, dest, dma_len);
|
||||
if (ret) {
|
||||
dev_err(acdev->host->dev, "dma failed");
|
||||
dev_err(acdev->host->dev, "dma failed\n");
|
||||
goto fail;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user