From: Charles Han Date: Thu, 27 Feb 2025 08:52:00 +0000 (+0800) Subject: ALSA: emu10k1: fix inconsistent indenting warning in snd_emu10k1_synth_free() X-Git-Tag: v6.15-rc1~173^2~28 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=aeb7cf20285ad322984480086c21bd3a04d419bc;p=thirdparty%2Flinux.git 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 Link: https://patch.msgid.link/20250227085243.18413-1-hanchunchao@inspur.com Signed-off-by: Takashi Iwai --- diff --git a/sound/pci/emu10k1/memory.c b/sound/pci/emu10k1/memory.c index d29711777161c..f6982bc6ff0d0 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; }