On Thu, 31 Jul 2025 at 11:41, Colin Ian King <colin.i.king@xxxxxxxxx> wrote: > > 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@xxxxxxxxx> Applied for next, thanks! Kind regards Uffe > --- > drivers/mmc/host/davinci_mmc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/mmc/host/davinci_mmc.c b/drivers/mmc/host/davinci_mmc.c > index c691f1b60395..2a3c8058b0fb 100644 > --- 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; > -- > 2.50.0 >