On 17.02.2023 12:02, Ahmad Fatoum wrote:
Hello Maxim,
On 17.02.23 08:31, Maxim Kochetkov wrote:
- ret = ns16550_init_iomem(dev, priv);
- if (ret)
- ret = ns16550_init_ioport(dev, priv);
-
if (ret)
return ret;
ret is now uninitialized here.
@@ -511,6 +507,10 @@ static int ns16550_probe(struct device *dev)
goto err;
}
+ ret = ns16550_init_iomem(dev, priv);
+ if (ret)
+ ret = ns16550_init_ioport(dev, priv);
second ret is never checked.
Sorry about that. I will fix it in v2.
If you move the second if (ret), patch looks ok to me.
jfyi, If you enable deep probe for your board/platform, clk_get()
would automatically probe the clock driver if unavailable, so you
shouldn't ever see -EPROBE_DEFER.
I tried deep probe and it works fine without any -EPROBE_DEFER. Thanks a
lot for the tip!