]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
ALSA: emu10k1: fix inconsistent indenting warning in snd_emu10k1_synth_free()
authorCharles Han <hanchunchao@inspur.com>
Thu, 27 Feb 2025 08:52:00 +0000 (16:52 +0800)
committerTakashi Iwai <tiwai@suse.de>
Thu, 27 Feb 2025 11:26:34 +0000 (12:26 +0100)
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>
sound/pci/emu10k1/memory.c

index d29711777161c3559bd95d72599c74c3d157b84e..f6982bc6ff0d0ea603cccf939a33cf53be22c824 100644 (file)
@@ -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;
 }