fpga: xilinx-pr-decoupler: Remove clk_get error message for probe defer
authorShubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
Fri, 10 Jan 2020 06:31:13 +0000 (12:01 +0530)
committerMoritz Fischer <mdf@kernel.org>
Fri, 10 Jan 2020 20:51:56 +0000 (12:51 -0800)
In probe, the driver checks for devm_clk_get return and print error
message in the failing case. However for -EPROBE_DEFER this message
is confusing so avoid it.

Signed-off-by: Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Signed-off-by: Moritz Fischer <mdf@kernel.org>
drivers/fpga/xilinx-pr-decoupler.c

index af9b387..7d69af2 100644 (file)
@@ -101,7 +101,8 @@ static int xlnx_pr_decoupler_probe(struct platform_device *pdev)
 
        priv->clk = devm_clk_get(&pdev->dev, "aclk");
        if (IS_ERR(priv->clk)) {
-               dev_err(&pdev->dev, "input clock not found\n");
+               if (PTR_ERR(priv->clk) != -EPROBE_DEFER)
+                       dev_err(&pdev->dev, "input clock not found\n");
                return PTR_ERR(priv->clk);
        }