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

Commit 5ad8b7d1 authored by Helge Bahmann's avatar Helge Bahmann Committed by Dave Airlie
Browse files

drm: fix double lock typo



[airlied: you shall not retype patches from other trees half asleep]

Signed-of-by: default avatarDave Airlie <airlied@redhat.com>
parent fec6c6fe
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -168,7 +168,7 @@ int drm_setmaster_ioctl(struct drm_device *dev, void *data,
	    file_priv->minor->master != file_priv->master) {
		mutex_lock(&dev->struct_mutex);
		file_priv->minor->master = drm_master_get(file_priv->master);
		mutex_lock(&dev->struct_mutex);
		mutex_unlock(&dev->struct_mutex);
	}

	return 0;