aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/sound/pci/trident
diff options
context:
space:
mode:
authorMarkus Elfring <elfring@users.sourceforge.net>2017-08-12 13:20:16 +0200
committerTakashi Iwai <tiwai@suse.de>2017-08-12 23:25:40 +0200
commitaef7758ff4ffcf9d7a03779f877228871efae4c0 (patch)
tree99e384a17199034036a0c1ad2234efa424c69cb1 /sound/pci/trident
parentALSA: usb: caiaq: audio: Delete two error messages for a failed memory allocation in alloc_urbs() (diff)
downloadwireguard-linux-aef7758ff4ffcf9d7a03779f877228871efae4c0.tar.xz
wireguard-linux-aef7758ff4ffcf9d7a03779f877228871efae4c0.zip
ALSA: trident: Delete an error message for a failed memory allocation in snd_trident_tlb_alloc()
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>
Diffstat (limited to 'sound/pci/trident')
-rw-r--r--sound/pci/trident/trident_main.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/sound/pci/trident/trident_main.c b/sound/pci/trident/trident_main.c
index 4561040520c2..d9bb6dd9f227 100644
--- a/sound/pci/trident/trident_main.c
+++ b/sound/pci/trident/trident_main.c
@@ -3363,11 +3363,9 @@ static int snd_trident_tlb_alloc(struct snd_trident *trident)
trident->tlb.entries_dmaaddr = ALIGN(trident->tlb.buffer.addr, SNDRV_TRIDENT_MAX_PAGES * 4);
/* allocate shadow TLB page table (virtual addresses) */
trident->tlb.shadow_entries = vmalloc(SNDRV_TRIDENT_MAX_PAGES*sizeof(unsigned long));
- if (trident->tlb.shadow_entries == NULL) {
- dev_err(trident->card->dev,
- "unable to allocate shadow TLB entries\n");
+ if (!trident->tlb.shadow_entries)
return -ENOMEM;
- }
+
/* allocate and setup silent page and initialise TLB entries */
if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(trident->pci),
SNDRV_TRIDENT_PAGE_SIZE, &trident->tlb.silent_page) < 0) {