]> git.baikalelectronics.ru Git - kernel.git/commit
gpu, drm, sis: Don't return uninitialized variable from sis_driver_load()
authorJesper Juhl <jj@chaosbits.net>
Sat, 14 Jan 2012 20:20:37 +0000 (21:20 +0100)
committerDave Airlie <airlied@redhat.com>
Mon, 23 Jan 2012 11:00:47 +0000 (11:00 +0000)
commit341729ba890d2baf5c12a2870a736b84bd016e6d
treed9e4b549a79023450f6fb429738f6c6ba1589187
parent57972bb395c3c00f6301f502e045ce7bbcac7d49
gpu, drm, sis: Don't return uninitialized variable from sis_driver_load()

In sis_driver_load(), the only use of 'ret' is as the return value
from the function, unfortunately it is never initialized, so the
function just returns garbage when it succeeds.
To fix that, remove the variable and just return 0 directly on success.

Signed-off-by: Jesper Juhl <jj@chaosbits.net>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/sis/sis_drv.c