diff options
| author | Colin Ian King <[email protected]> | 2020-05-24 22:27:15 +0000 |
|---|---|---|
| committer | Daniel Vetter <[email protected]> | 2020-05-25 14:35:52 +0000 |
| commit | 2217d3bc39b49ad8a64bb3f021e8a6ed253c0d8a (patch) | |
| tree | 30e497897a3fae2b841583c100b8feac22919101 /drivers/gpu/drm/drm_auth.c | |
| parent | drm/vblank: Fix -Wformat compile warnings on some arches (diff) | |
| download | kernel-2217d3bc39b49ad8a64bb3f021e8a6ed253c0d8a.tar.gz kernel-2217d3bc39b49ad8a64bb3f021e8a6ed253c0d8a.zip | |
drm/auth: remove redundant assignment to variable ret
The variable ret is being initialized with a value that is
never read and it is being updated later with a new value. The
initialization is redundant and can be removed.
Addresses-Coverity: ("Unused value")
Signed-off-by: Colin Ian King <[email protected]>
Signed-off-by: Daniel Vetter <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
Diffstat (limited to 'drivers/gpu/drm/drm_auth.c')
| -rw-r--r-- | drivers/gpu/drm/drm_auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_auth.c b/drivers/gpu/drm/drm_auth.c index 800ac39f3213..74ce0c29c960 100644 --- a/drivers/gpu/drm/drm_auth.c +++ b/drivers/gpu/drm/drm_auth.c @@ -282,7 +282,7 @@ static void drm_drop_master(struct drm_device *dev, int drm_dropmaster_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv) { - int ret = -EINVAL; + int ret; mutex_lock(&dev->master_mutex); |
