Commit 5137d6da authored by Colin Ian King's avatar Colin Ian King Committed by Takashi Iwai

ALSA: ak4114: remove redundant check on err being < 0

snd_ak4114_create checks if the error return err is less than zero
or not.  This is a redundant check, err can only be < 0 to get to
the __fail label, in which case just return err and remove the
redundant check (since we never return -EIO).
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 3805e6a1
...@@ -121,7 +121,7 @@ int snd_ak4114_create(struct snd_card *card, ...@@ -121,7 +121,7 @@ int snd_ak4114_create(struct snd_card *card,
__fail: __fail:
snd_ak4114_free(chip); snd_ak4114_free(chip);
return err < 0 ? err : -EIO; return err;
} }
EXPORT_SYMBOL(snd_ak4114_create); EXPORT_SYMBOL(snd_ak4114_create);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment