Skip to content

Commit

Permalink
ALSA: emu10k1: Remove unneeded variable "change"
Browse files Browse the repository at this point in the history
fix below issue reported by coccicheck
sound/pci/emu10k1/emu10k1x.c:1077:5-11: Unneeded variable: "change".
Return "0" on line 1092

Signed-off-by: Hariprasad Kelam <[email protected]>
Signed-off-by: Takashi Iwai <[email protected]>
  • Loading branch information
Hariprasad Kelam authored and tiwai committed Jul 15, 2019
1 parent 5e19cad commit b7cad26
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions sound/pci/emu10k1/emu10k1x.c
Original file line number Diff line number Diff line change
Expand Up @@ -1074,7 +1074,6 @@ static int snd_emu10k1x_shared_spdif_put(struct snd_kcontrol *kcontrol,
{
struct emu10k1x *emu = snd_kcontrol_chip(kcontrol);
unsigned int val;
int change = 0;

val = ucontrol->value.integer.value[0] ;

Expand All @@ -1089,7 +1088,7 @@ static int snd_emu10k1x_shared_spdif_put(struct snd_kcontrol *kcontrol,
snd_emu10k1x_ptr_write(emu, ROUTING, 0, 0x1003F);
snd_emu10k1x_gpio_write(emu, 0x1080);
}
return change;
return 0;
}

static const struct snd_kcontrol_new snd_emu10k1x_shared_spdif =
Expand Down

0 comments on commit b7cad26

Please sign in to comment.