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

Commit 7470f022 authored by Pratik Patel's avatar Pratik Patel Committed by Matt Wagantall
Browse files

soc: qcom: hvc: add missing x7 argument to the 32bit __hvc stub



__hvc should take 11 arguments instead of 10. Add the missing x7
argument to avoid compilation error if the driver gets enabled on
32bit targets.

Change-Id: I09985235fdbfb64e81743a71ceb2764c32d3a3b1
Signed-off-by: default avatarPratik Patel <pratikp@codeaurora.org>
parent 4a372326
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -80,7 +80,7 @@ static int __hvc(u64 x0, u64 x1, u64 x2, u64 x3, u64 x4, u64 x5,
}
#else
static int __hvc(u64 x0, u64 x1, u64 x2, u64 x3, u64 x4, u64 x5,
		 u64 x6, u64 *ret1, u64 *ret2, u64 *ret3)
		 u64 x6, u64 x7, u64 *ret1, u64 *ret2, u64 *ret3)
{
	return 0;
}