aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorCharles Han <hanchunchao@inspur.com>2025-02-27 16:52:00 +0800
committerTakashi Iwai <tiwai@suse.de>2025-02-27 12:26:34 +0100
commitaeb7cf20285ad322984480086c21bd3a04d419bc (patch)
tree5884c31c1802bdf9ee41cbc46be162956b74ffcf
parentALSA: pcm: Drop superfluous NULL check in snd_pcm_format_set_silence() (diff)
downloadwireguard-linux-aeb7cf20285ad322984480086c21bd3a04d419bc.tar.xz
wireguard-linux-aeb7cf20285ad322984480086c21bd3a04d419bc.zip
ALSA: emu10k1: fix inconsistent indenting warning in snd_emu10k1_synth_free()
Fix below inconsistent indenting smatch warning. smatch warnings: sound/pci/emu10k1/memory.c:444 snd_emu10k1_synth_free() warn: inconsistent indenting Signed-off-by: Charles Han <hanchunchao@inspur.com> Link: https://patch.msgid.link/20250227085243.18413-1-hanchunchao@inspur.com Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to '')
-rw-r--r--sound/pci/emu10k1/memory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/emu10k1/memory.c b/sound/pci/emu10k1/memory.c
index d29711777161..f6982bc6ff0d 100644
--- a/sound/pci/emu10k1/memory.c
+++ b/sound/pci/emu10k1/memory.c
@@ -441,7 +441,7 @@ snd_emu10k1_synth_free(struct snd_emu10k1 *emu, struct snd_util_memblk *memblk)
unmap_memblk(emu, blk);
spin_unlock_irqrestore(&emu->memblk_lock, flags);
synth_free_pages(emu, blk);
- __snd_util_mem_free(hdr, memblk);
+ __snd_util_mem_free(hdr, memblk);
mutex_unlock(&hdr->block_mutex);
return 0;
}