projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fec6c6f
)
drm: fix double lock typo
author
Helge Bahmann
<helge.bahmann@secunet.com>
Wed, 4 Mar 2009 11:49:14 +0000
(21:49 +1000)
committer
Dave Airlie
<airlied@linux.ie>
Wed, 4 Mar 2009 11:49:14 +0000
(21:49 +1000)
[airlied: you shall not retype patches from other trees half asleep]
Signed-of-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/drm_stub.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/gpu/drm/drm_stub.c
b/drivers/gpu/drm/drm_stub.c
index 096e2a37446d3e8fb333f45c342bc2a975607b34..7c8b15b22bf2e089fd9356debc9f967031723cbe 100644
(file)
--- a/
drivers/gpu/drm/drm_stub.c
+++ b/
drivers/gpu/drm/drm_stub.c
@@
-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_
un
lock(&dev->struct_mutex);
}
return 0;