mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 00:34:20 +08:00
phy: tegra: Don't warn on probe deferral
Deferred probe is an expected return value for devm_regulator_bulk_get(). Given that the driver deals with it properly, there's no need to output a warning that may potentially confuse users. Signed-off-by: Jon Hunter <jonathanh@nvidia.com> Acked-by: Thierry Reding <treding@nvidia.com> Acked-by: JC Kuo <jckuo@nvidia.com> Link: https://lore.kernel.org/r/20201111103708.152566-1-jonathanh@nvidia.com Signed-off-by: Vinod Koul <vkoul@kernel.org>
This commit is contained in:
parent
839034d8bd
commit
50c0133cd1
@ -1198,7 +1198,7 @@ static int tegra_xusb_padctl_probe(struct platform_device *pdev)
|
||||
err = devm_regulator_bulk_get(&pdev->dev, padctl->soc->num_supplies,
|
||||
padctl->supplies);
|
||||
if (err < 0) {
|
||||
dev_err(&pdev->dev, "failed to get regulators: %d\n", err);
|
||||
dev_err_probe(&pdev->dev, err, "failed to get regulators\n");
|
||||
goto remove;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user