c1d5388741
* Thu May 28 2020 CKI@GitLab <cki-project@redhat.com> [5.7.0-0.rc7.20200528gitb0c3ba31be3e.1] - b0c3ba31be3e rebase - Updated changelog for the release based on 444fc5cde643 ("CKI@GitLab") Resolves: rhbz# Signed-off-by: Justin M. Forbes <jforbes@fedoraproject.org>
33 lines
1.2 KiB
Diff
33 lines
1.2 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Colin Ian King <colin.king@canonical.com>
|
|
Date: Sat, 29 Feb 2020 00:53:07 +0000
|
|
Subject: [PATCH] core/memory: remove redundant assignments 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 <colin.king@canonical.com>
|
|
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
|
|
---
|
|
drivers/gpu/drm/nouveau/nvkm/core/memory.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/gpu/drm/nouveau/nvkm/core/memory.c b/drivers/gpu/drm/nouveau/nvkm/core/memory.c
|
|
index 4cc186262d34..38130ef272d6 100644
|
|
--- a/drivers/gpu/drm/nouveau/nvkm/core/memory.c
|
|
+++ b/drivers/gpu/drm/nouveau/nvkm/core/memory.c
|
|
@@ -140,7 +140,7 @@ nvkm_memory_new(struct nvkm_device *device, enum nvkm_memory_target target,
|
|
{
|
|
struct nvkm_instmem *imem = device->imem;
|
|
struct nvkm_memory *memory;
|
|
- int ret = -ENOSYS;
|
|
+ int ret;
|
|
|
|
if (unlikely(target != NVKM_MEM_TARGET_INST || !imem))
|
|
return -ENOSYS;
|
|
--
|
|
2.26.2
|
|
|