From: Sergei Shtylyov Date: Sat, 20 Jun 2015 00:51:34 +0000 (+0300) Subject: can: rcar_can: unify error messages X-Git-Tag: v4.2-rc3~33^2^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=585bc2ac4cc0e2398f5b128018247f51fa3e0e12;p=platform%2Fkernel%2Flinux-exynos.git can: rcar_can: unify error messages All the error messages in the driver but the ones from devm_clk_get() failures use similar format. Make those two messages consitent with others. Signed-off-by: Sergei Shtylyov Signed-off-by: Marc Kleine-Budde --- diff --git a/drivers/net/can/rcar_can.c b/drivers/net/can/rcar_can.c index 5e81aff..7bd5419 100644 --- a/drivers/net/can/rcar_can.c +++ b/drivers/net/can/rcar_can.c @@ -785,7 +785,8 @@ static int rcar_can_probe(struct platform_device *pdev) priv->clk = devm_clk_get(&pdev->dev, "clkp1"); if (IS_ERR(priv->clk)) { err = PTR_ERR(priv->clk); - dev_err(&pdev->dev, "cannot get peripheral clock: %d\n", err); + dev_err(&pdev->dev, "cannot get peripheral clock, error %d\n", + err); goto fail_clk; } @@ -797,7 +798,7 @@ static int rcar_can_probe(struct platform_device *pdev) priv->can_clk = devm_clk_get(&pdev->dev, clock_names[clock_select]); if (IS_ERR(priv->can_clk)) { err = PTR_ERR(priv->can_clk); - dev_err(&pdev->dev, "cannot get CAN clock: %d\n", err); + dev_err(&pdev->dev, "cannot get CAN clock, error %d\n", err); goto fail_clk; }