Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e4826a94 authored by Thomas Meyer's avatar Thomas Meyer Committed by Rob Clark
Browse files

drm/msm: Odd PTR_ERR usage



The variable priv->kms is not initialized yet.

Found by "scripts/coccinelle/tests/odd_ptr_err.cocci".
PTR_ERR should access the value just tested by IS_ERR.

Signed-off-by: default avatarThomas Meyer <thomas@m3y3r.de>
parent d8524ae9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -199,7 +199,7 @@ static int msm_load(struct drm_device *dev, unsigned long flags)
		 * imx drm driver on iMX5
		 */
		dev_err(dev->dev, "failed to load kms\n");
		ret = PTR_ERR(priv->kms);
		ret = PTR_ERR(kms);
		goto fail;
	}