[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20180527212312.23997-1-colin.king@canonical.com>
Date: Sun, 27 May 2018 22:23:12 +0100
From: Colin King <colin.king@...onical.com>
To: Oleksandr Andrushchenko <oleksandr_andrushchenko@...m.com>,
Jaroslav Kysela <perex@...ex.cz>,
Takashi Iwai <tiwai@...e.com>, xen-devel@...ts.xenproject.org,
alsa-devel@...a-project.org
Cc: kernel-janitors@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH][next] ALSA: xen-front: remove redundant error check on ret
From: Colin Ian King <colin.king@...onical.com>
The error for a -ve value in ret is redundant as all previous
assignments to ret have an associated -ve check and hence it
is impossible for ret to be less that zero at the point of the
check. Remove this redundant error check.
Detected by CoveritScan, CID#1469407 ("Logically Dead code")
Signed-off-by: Colin Ian King <colin.king@...onical.com>
---
sound/xen/xen_snd_front_evtchnl.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/sound/xen/xen_snd_front_evtchnl.c b/sound/xen/xen_snd_front_evtchnl.c
index d70a62e7f910..102d6e096cc8 100644
--- a/sound/xen/xen_snd_front_evtchnl.c
+++ b/sound/xen/xen_snd_front_evtchnl.c
@@ -351,8 +351,6 @@ int xen_snd_front_evtchnl_create_all(struct xen_snd_front_info *front_info,
}
}
}
- if (ret < 0)
- goto fail;
front_info->num_evt_pairs = num_streams;
return 0;
--
2.17.0
Powered by blists - more mailing lists