aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorHariprasad Kelam <hariprasad.kelam@gmail.com>2019-07-11 22:51:07 +0530
committerTakashi Iwai <tiwai@suse.de>2019-07-15 08:54:35 +0200
commit2f235d92ac225361a9c653cb76c7ca8ef99621de (patch)
tree533f5ca57a229bf47ad2c739a889fa5160850983 /sound
parentALSA: emu10k1: Remove unneeded variable "change" (diff)
downloadlinux-dev-2f235d92ac225361a9c653cb76c7ca8ef99621de.tar.xz
linux-dev-2f235d92ac225361a9c653cb76c7ca8ef99621de.zip
ALSA: rme9652: Unneeded variable: "result".
This patch fixes below issue reported by coccicheck sound/pci/rme9652/rme9652.c:2161:5-11: Unneeded variable: "result". Return "0" on line 2167 Signed-off-by: Hariprasad Kelam <hariprasad.kelam@gmail.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/rme9652/rme9652.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/pci/rme9652/rme9652.c b/sound/pci/rme9652/rme9652.c
index cb9818af5b41..4c851f8dcaf8 100644
--- a/sound/pci/rme9652/rme9652.c
+++ b/sound/pci/rme9652/rme9652.c
@@ -2158,13 +2158,12 @@ static int snd_rme9652_prepare(struct snd_pcm_substream *substream)
{
struct snd_rme9652 *rme9652 = snd_pcm_substream_chip(substream);
unsigned long flags;
- int result = 0;
spin_lock_irqsave(&rme9652->lock, flags);
if (!rme9652->running)
rme9652_reset_hw_pointer(rme9652);
spin_unlock_irqrestore(&rme9652->lock, flags);
- return result;
+ return 0;
}
static const struct snd_pcm_hardware snd_rme9652_playback_subinfo =