projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7981bf7
)
drm: fix return value in auth function
author
Dave Airlie
<airlied@linux.ie>
Tue, 8 Aug 2006 12:17:02 +0000
(22:17 +1000)
committer
Dave Airlie
<airlied@linux.ie>
Thu, 21 Sep 2006 19:32:32 +0000
(
05:32
+1000)
This just fixes up the return value in the drm_auth:remove_magic
Signed-off-by: Dave Airlie <airlied@linux.ie>
drivers/char/drm/drm_auth.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/char/drm/drm_auth.c
b/drivers/char/drm/drm_auth.c
index 40cd262ca9e1b2009d0171f810a145afc0a7c50b..c7b19d35bcd6fc059c4c41d6925221f0bc78eb0a 100644
(file)
--- a/
drivers/char/drm/drm_auth.c
+++ b/
drivers/char/drm/drm_auth.c
@@
-121,7
+121,7
@@
static int drm_remove_magic(drm_device_t * dev, drm_magic_t magic)
drm_free(pt, sizeof(*pt), DRM_MEM_MAGIC);
- return
-EINVAL
;
+ return
0
;
}
/**