Skip to content

Commit

Permalink
thermal/drivers/renesas: Remove trailing space after \n newline
Browse files Browse the repository at this point in the history
There is a extraneous space after a newline in a dev_err message.
Remove it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
Link: https://lore.kernel.org/r/20240901162719.144406-1-colin.i.king@gmail.com
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
  • Loading branch information
Colin Ian King authored and Daniel Lezcano committed Sep 2, 2024
1 parent b779bbb commit b615615
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/thermal/renesas/rcar_thermal.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit b615615

Please sign in to comment.