> - ret = PTR_ERR(priv->clk); > - dev_err(&pdev->dev, "cannot get clock: %d\n", ret); > - goto eprobe; > + dev_err(&pdev->dev, "cannot get clock\n"); > + return PTR_ERR(priv->clk); Why dropping the 'ret' printout? Will it be printed by the core?