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

Commit 3bd676ee authored by Vidyakumar Athota's avatar Vidyakumar Athota
Browse files

misc: qcom: qdsp6v2: remove error log on default case



Although this is not an error case but it often drag
unnecessary attentions.

Change-Id: I99d0b5baa32e8b612e1b77f02ca645921c829176
Signed-off-by: default avatarVidyakumar Athota <vathota@codeaurora.org>
parent 093d9369
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -873,9 +873,8 @@ static long audio_aio_process_event_req_compat(struct q6audio_aio *audio,
			usr_evt.event_payload.error_info.err_type;
		break;
	default:
		pr_err("%s: unknown audio event type = %d",
			__func__, usr_evt_32.event_type);
		rc = -EINVAL;
		pr_debug("%s: unknown audio event type = %d rc = %ld",
			 __func__, usr_evt_32.event_type, rc);
		return rc;
	}
	if (copy_to_user(arg, &usr_evt_32, sizeof(usr_evt_32))) {