From: Colin Ian King Date: Sun, 1 Sep 2024 16:27:19 +0000 (+0100) Subject: thermal/drivers/renesas: Remove trailing space after \n newline X-Git-Tag: v6.12-rc1~216^2^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b615615e4989be13052898111412766d80c2d65b;p=thirdparty%2Fkernel%2Flinux.git thermal/drivers/renesas: Remove trailing space after \n newline There is a extraneous space after a newline in a dev_err message. Remove it. Signed-off-by: Colin Ian King Reviewed-by: Niklas Söderlund Link: https://lore.kernel.org/r/20240901162719.144406-1-colin.i.king@gmail.com Signed-off-by: Daniel Lezcano --- diff --git a/drivers/thermal/renesas/rcar_thermal.c b/drivers/thermal/renesas/rcar_thermal.c index 1e93f60b6d744..ddc8341e5c3fa 100644 --- a/drivers/thermal/renesas/rcar_thermal.c +++ b/drivers/thermal/renesas/rcar_thermal.c @@ -447,7 +447,7 @@ static int rcar_thermal_probe(struct platform_device *pdev) ret = devm_request_irq(dev, irq, rcar_thermal_irq, IRQF_SHARED, dev_name(dev), common); if (ret) { - dev_err(dev, "irq request failed\n "); + dev_err(dev, "irq request failed\n"); goto error_unregister; }