Message ID | 20220201070118.196372-1-joel@jms.id.au (mailing list archive) |
---|---|
State | Accepted |
Commit | 301a5d3ad2432d7829f59432ca0a93a6defbb9a1 |
Headers | show |
Series | soc: aspeed: lpc-ctrl: Block error printing on probe defer cases | expand |
Hello: This patch was applied to soc/soc.git (arm/fixes) by Arnd Bergmann <arnd@arndb.de>: On Tue, 1 Feb 2022 17:31:18 +1030 you wrote: > From: Jae Hyun Yoo <jae.hyun.yoo@linux.intel.com> > > Add a checking code when it gets -EPROBE_DEFER while getting a clock > resource. In this case, it doesn't need to print out an error message > because the probing will be re-visited. > > Signed-off-by: Jae Hyun Yoo <jae.hyun.yoo@linux.intel.com> > Reviewed-by: Andrew Jeffery <andrew@aj.id.au> > Reviewed-by: Iwona Winiarska <iwona.winiarska@intel.com> > Link: https://lore.kernel.org/r/20211104173709.222912-1-jae.hyun.yoo@intel.com > Signed-off-by: Joel Stanley <joel@jms.id.au> > > [...] Here is the summary with links: - soc: aspeed: lpc-ctrl: Block error printing on probe defer cases https://git.kernel.org/soc/soc/c/301a5d3ad243 You are awesome, thank you!
diff --git a/drivers/soc/aspeed/aspeed-lpc-ctrl.c b/drivers/soc/aspeed/aspeed-lpc-ctrl.c index 72771e018c42..258894ed234b 100644 --- a/drivers/soc/aspeed/aspeed-lpc-ctrl.c +++ b/drivers/soc/aspeed/aspeed-lpc-ctrl.c @@ -306,10 +306,9 @@ static int aspeed_lpc_ctrl_probe(struct platform_device *pdev) } lpc_ctrl->clk = devm_clk_get(dev, NULL); - if (IS_ERR(lpc_ctrl->clk)) { - dev_err(dev, "couldn't get clock\n"); - return PTR_ERR(lpc_ctrl->clk); - } + if (IS_ERR(lpc_ctrl->clk)) + return dev_err_probe(dev, PTR_ERR(lpc_ctrl->clk), + "couldn't get clock\n"); rc = clk_prepare_enable(lpc_ctrl->clk); if (rc) { dev_err(dev, "couldn't enable clock\n");