diff options
author | Sudip Mukherjee <sudip@vectorindia.org> | 2014-11-14 13:39:05 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-11-14 16:16:36 +0300 |
commit | 387417b56295ef93d7cb38e1721826c85dfe897c (patch) | |
tree | f3f01a70e02e6fc5447dfbd299e681f4dc17dc83 /sound/pci/ice1712/ice1724.c | |
parent | 9547c0999e50fd624cab52f94a79f0fd27a7cb84 (diff) | |
download | linux-387417b56295ef93d7cb38e1721826c85dfe897c.tar.xz |
ALSA: ice1712: remove unneeded return statement
the functions:
snd_ice1712_akm4xxx_build_controls
snd_ice1712_build_pro_mixer
snd_ctl_add
snd_ak4114_build
prodigy192_ak4114_init
snd_ak4113_build
are all returning either 0 or a negetive error value.
so we can easily remove the check for a negative value and return
the value instead.
Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/ice1712/ice1724.c')
-rw-r--r-- | sound/pci/ice1712/ice1724.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sound/pci/ice1712/ice1724.c b/sound/pci/ice1712/ice1724.c index f633e3bb4c43..ea53167081b8 100644 --- a/sound/pci/ice1712/ice1724.c +++ b/sound/pci/ice1712/ice1724.c @@ -2497,11 +2497,8 @@ static int snd_vt1724_build_controls(struct snd_ice1712 *ice) return err; } - err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_mixer_pro_peak, ice)); - if (err < 0) - return err; - - return 0; + return snd_ctl_add(ice->card, + snd_ctl_new1(&snd_vt1724_mixer_pro_peak, ice)); } static int snd_vt1724_free(struct snd_ice1712 *ice) |