ALSA: pcxhr: Delete an error message for a failed memory allocation in pcxhr_create()
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>
This commit is contained in:
parent
dee49895b1
commit
c38774d830
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue