aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/kvm
diff options
context:
space:
mode:
authorMarc Zyngier <marc.zyngier@arm.com>2016-01-02 09:04:48 -0500
committerMarc Zyngier <marc.zyngier@arm.com>2016-02-29 13:34:12 -0500
commit42428525a9eefea9dda68de684381ce9f3dc4266 (patch)
treed07e5a62881e83d9bcd7a0f79a7e8cc8b63e89ad /arch/arm/kvm
parent1a61ae7af4d65ee311a737d550da6cf92a3aea4c (diff)
ARM: KVM: Remove __kvm_hyp_code_start/__kvm_hyp_code_end
Now that we've unified the way we refer to the HYP text between arm and arm64, drop __kvm_hyp_code_start/end, and just use the __hyp_text_start/end symbols. Acked-by: Christoffer Dall <christoffer.dall@linaro.org> Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Diffstat (limited to 'arch/arm/kvm')
-rw-r--r--arch/arm/kvm/arm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/kvm/arm.c b/arch/arm/kvm/arm.c
index 6b76e0152e58..fcf6c130c986 100644
--- a/arch/arm/kvm/arm.c
+++ b/arch/arm/kvm/arm.c
@@ -1075,7 +1075,7 @@ static int init_hyp_mode(void)
1075 /* 1075 /*
1076 * Map the Hyp-code called directly from the host 1076 * Map the Hyp-code called directly from the host
1077 */ 1077 */
1078 err = create_hyp_mappings(__kvm_hyp_code_start, __kvm_hyp_code_end); 1078 err = create_hyp_mappings(__hyp_text_start, __hyp_text_end);
1079 if (err) { 1079 if (err) {
1080 kvm_err("Cannot map world-switch code\n"); 1080 kvm_err("Cannot map world-switch code\n");
1081 goto out_free_mappings; 1081 goto out_free_mappings;