phy: phy-mtk-dp: Fix an error code in probe()
[ Upstream commit 5782017cc4d0c8f3425d55b893675bb8a20c33e9 ]
Negative -EINVAL was intended instead of positive EINVAL.
Fixes: 6a23afad44
("phy: phy-mtk-dp: Add driver for DP phy")
Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
Reviewed-by: Chen-Yu Tsai <wenst@chromium.org>
Link: https://lore.kernel.org/r/3c699e00-2883-40d9-92c3-0da1dc38fdd4@moroto.mountain
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
15c94c3151
commit
3a5dbdc53a
@ -169,7 +169,7 @@ static int mtk_dp_phy_probe(struct platform_device *pdev)
|
|||||||
|
|
||||||
regs = *(struct regmap **)dev->platform_data;
|
regs = *(struct regmap **)dev->platform_data;
|
||||||
if (!regs)
|
if (!regs)
|
||||||
return dev_err_probe(dev, EINVAL,
|
return dev_err_probe(dev, -EINVAL,
|
||||||
"No data passed, requires struct regmap**\n");
|
"No data passed, requires struct regmap**\n");
|
||||||
|
|
||||||
dp_phy = devm_kzalloc(dev, sizeof(*dp_phy), GFP_KERNEL);
|
dp_phy = devm_kzalloc(dev, sizeof(*dp_phy), GFP_KERNEL);
|
||||||
|
Loading…
Reference in New Issue
Block a user