drm/msm/dsi_pll_10nm: Remove impossible check
While I'm in here, cut this out, pdev can't be NULL Reviewed-by: Rob Clark <robdclark@chromium.org> Signed-off-by: Sean Paul <seanpaul@chromium.org> Link: https://patchwork.freedesktop.org/patch/msgid/20190617201301.133275-2-sean@poorly.run
This commit is contained in:
parent
83dda22886
commit
8b3c087a79
|
@ -818,9 +818,6 @@ struct msm_dsi_pll *msm_dsi_pll_10nm_init(struct platform_device *pdev, int id)
|
||||||
struct msm_dsi_pll *pll;
|
struct msm_dsi_pll *pll;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
if (!pdev)
|
|
||||||
return ERR_PTR(-ENODEV);
|
|
||||||
|
|
||||||
pll_10nm = devm_kzalloc(&pdev->dev, sizeof(*pll_10nm), GFP_KERNEL);
|
pll_10nm = devm_kzalloc(&pdev->dev, sizeof(*pll_10nm), GFP_KERNEL);
|
||||||
if (!pll_10nm)
|
if (!pll_10nm)
|
||||||
return ERR_PTR(-ENOMEM);
|
return ERR_PTR(-ENOMEM);
|
||||||
|
|
Loading…
Reference in New Issue