ALSA: mixart: Delete an error message for a failed memory allocation in snd_mixart_cr...
authorMarkus Elfring <elfring@users.sourceforge.net>
Sat, 12 Aug 2017 16:45:42 +0000 (18:45 +0200)
committerTakashi Iwai <tiwai@suse.de>
Sat, 12 Aug 2017 21:33:20 +0000 (23:33 +0200)
Omit an extra message for a memory allocation failure in this function.

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/mixart/mixart.c

index aca3b34..a74f1ad 100644 (file)
@@ -1052,10 +1052,8 @@ static int snd_mixart_create(struct mixart_mgr *mgr, struct snd_card *card, int
        };
 
        chip = kzalloc(sizeof(*chip), GFP_KERNEL);
-       if (! chip) {
-               dev_err(card->dev, "cannot allocate chip\n");
+       if (!chip)
                return -ENOMEM;
-       }
 
        chip->card = card;
        chip->chip_idx = idx;