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

Commit b07b4f07 authored by Chris Lew's avatar Chris Lew
Browse files

haven: doorbell: Fix hh_dbl_send error print



Add the missing __func__ argument to the failed hypercall error print
in hh_dbl_send().

Change-Id: If40a13db695822fb363ea870389e42ba8dbb9015
Signed-off-by: default avatarChris Lew <clew@codeaurora.org>
parent c4684eeb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -206,7 +206,7 @@ int hh_dbl_send(void *dbl_client_desc, hh_dbl_flags_t *newflags)

	ret = hh_remap_error(hh_ret);
	if (ret != 0)
		pr_err("%s: Hypercall failed ret = %d\n", hh_ret);
		pr_err("%s: Hypercall failed ret = %d\n", __func__, hh_ret);
	else
		*newflags = send_resp.old_flags;