ALSA: rme96: Delete two error messages for a failed memory allocation in snd_rme96_probe()
Omit extra messages 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:
Родитель
aef7758ff4
Коммит
1b2ff0c0c4
|
@ -2489,15 +2489,11 @@ snd_rme96_probe(struct pci_dev *pci,
|
||||||
#ifdef CONFIG_PM_SLEEP
|
#ifdef CONFIG_PM_SLEEP
|
||||||
rme96->playback_suspend_buffer = vmalloc(RME96_BUFFER_SIZE);
|
rme96->playback_suspend_buffer = vmalloc(RME96_BUFFER_SIZE);
|
||||||
if (!rme96->playback_suspend_buffer) {
|
if (!rme96->playback_suspend_buffer) {
|
||||||
dev_err(card->dev,
|
|
||||||
"Failed to allocate playback suspend buffer!\n");
|
|
||||||
snd_card_free(card);
|
snd_card_free(card);
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
rme96->capture_suspend_buffer = vmalloc(RME96_BUFFER_SIZE);
|
rme96->capture_suspend_buffer = vmalloc(RME96_BUFFER_SIZE);
|
||||||
if (!rme96->capture_suspend_buffer) {
|
if (!rme96->capture_suspend_buffer) {
|
||||||
dev_err(card->dev,
|
|
||||||
"Failed to allocate capture suspend buffer!\n");
|
|
||||||
snd_card_free(card);
|
snd_card_free(card);
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче