summaryrefslogtreecommitdiff
path: root/drivers/soc
diff options
context:
space:
mode:
authorPratik Patel <pratikp@codeaurora.org>2014-09-30 09:30:25 -0700
committerDavid Keitel <dkeitel@codeaurora.org>2016-03-22 11:12:07 -0700
commitcc077f64d26970fc01dfa1114a45bf475f920916 (patch)
treee70467f426b96cbefb7f9fba24af2055de5e2997 /drivers/soc
parentebce13ea36f54efcb366c562deb0c1bd3d81e688 (diff)
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: Pratik Patel <pratikp@codeaurora.org>
Diffstat (limited to 'drivers/soc')
-rw-r--r--drivers/soc/qcom/hvc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soc/qcom/hvc.c b/drivers/soc/qcom/hvc.c
index 0421326aa1cd..d837cbf09442 100644
--- a/drivers/soc/qcom/hvc.c
+++ b/drivers/soc/qcom/hvc.c
@@ -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;
}