projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d76ae3c
)
mmc: davinci: Remove space before newline
author
Colin Ian King
<colin.i.king@gmail.com>
Thu, 31 Jul 2025 09:41:16 +0000
(10:41 +0100)
committer
Ulf Hansson
<ulf.hansson@linaro.org>
Mon, 18 Aug 2025 09:19:45 +0000
(11:19 +0200)
There is a extraneous space before a newline in a dev_err message.
Remove the space.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Link:
https://lore.kernel.org/r/20250731094116.2163061-1-colin.i.king@gmail.com
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/davinci_mmc.c
patch
|
blob
|
history
diff --git
a/drivers/mmc/host/davinci_mmc.c
b/drivers/mmc/host/davinci_mmc.c
index
c691f1b
..
2a3c805
100644
(file)
--- a/
drivers/mmc/host/davinci_mmc.c
+++ b/
drivers/mmc/host/davinci_mmc.c
@@
-588,7
+588,7
@@
static void mmc_davinci_request(struct mmc_host *mmc, struct mmc_request *req)
cpu_relax();
}
if (mmcst1 & MMCST1_BUSY) {
- dev_err(mmc_dev(host->mmc), "still BUSY? bad ...
\n");
+ dev_err(mmc_dev(host->mmc), "still BUSY? bad ...\n");
req->cmd->error = -ETIMEDOUT;
mmc_request_done(mmc, req);
return;