ALSA: ak4114: remove redundant check on err being < 0
authorColin Ian King <colin.king@canonical.com>
Tue, 12 Jul 2016 10:26:29 +0000 (11:26 +0100)
committerTakashi Iwai <tiwai@suse.de>
Tue, 12 Jul 2016 10:28:04 +0000 (12:28 +0200)
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: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/i2c/other/ak4114.c

index 5a4cf3fab4ae868d3d571fdb70587e22dca8f4fa..d53c9bb36281f8a1f8827c769c1d19ca494fbf50 100644 (file)
@@ -121,7 +121,7 @@ int snd_ak4114_create(struct snd_card *card,
 
       __fail:
        snd_ak4114_free(chip);
-       return err < 0 ? err : -EIO;
+       return err;
 }
 EXPORT_SYMBOL(snd_ak4114_create);
 
This page took 0.026839 seconds and 5 git commands to generate.