Unverified Commit 7bc18a78 authored by Yang Li's avatar Yang Li Committed by Mark Brown
Browse files

ASoC: codecs: Remove unneeded semicolon



This patch removes an unneeded semicolon after a switch statement.

./sound/soc/codecs/ntp8835.c:280:2-3: Unneeded semicolon

Reported-by: default avatarAbaci Robot <abaci@linux.alibaba.com>
Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=11404


Signed-off-by: default avatarYang Li <yang.lee@linux.alibaba.com>
Link: https://patch.msgid.link/20241017051909.4638-1-yang.lee@linux.alibaba.com


Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 0d3039f4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -277,7 +277,7 @@ static int ntp8835_set_component_sysclk(struct snd_soc_component *component,
		ntp8835->mclk_rate = 0;
		dev_err(component->dev, "Unsupported MCLK value: %u", freq);
		return -EINVAL;
	};
	}

	return 0;
}