Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0de85ae1 authored by Stephen Boyd's avatar Stephen Boyd
Browse files

ASoC: msm: Fix suspicious indent



The break statment is suspiciously indented here, causing newer
GCCs to warn about it. Let's remove the braces and deindent the
break statement. Code functionality should be the same.

Change-Id: Ia202b2f3099be624011c3c4cc552f50f3b9e2efd
CRs-Fixed: 2014919
Cc: Banajit Goswami <bgoswami@codeaurora.org>
Signed-off-by: default avatarStephen Boyd <sboyd@codeaurora.org>
parent d3756c00
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@ static long audio_ioctl_shared(struct file *file, unsigned int cmd,
	int rc = 0;

	switch (cmd) {
	case AUDIO_START: {
	case AUDIO_START:
		pr_err("%s[%pK]: AUDIO_START session_id[%d]\n", __func__,
			audio, audio->ac->session);
		if (audio->feedback == NON_TUNNEL_MODE) {
@@ -107,8 +107,8 @@ static long audio_ioctl_shared(struct file *file, unsigned int cmd,
			audio->enabled);
		if (audio->stopped == 1)
			audio->stopped = 0;

		break;
		}
	default:
		pr_err("%s: Unknown ioctl cmd = %d", __func__, cmd);
		rc = -EINVAL;