ALSA: pcxhr: Delete an error message for a failed memory allocation in pcxhr_create()
authorMarkus Elfring <elfring@users.sourceforge.net>
Sat, 12 Aug 2017 16:14:54 +0000 (18:14 +0200)
committerTakashi Iwai <tiwai@suse.de>
Sat, 12 Aug 2017 21:32:46 +0000 (23:32 +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/pcxhr/pcxhr.c

index e6f9aa6..f9ae72f 100644 (file)
@@ -1215,10 +1215,8 @@ static int pcxhr_create(struct pcxhr_mgr *mgr,
        };
 
        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;