aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCornelia Huck <cohuck@redhat.com>2025-07-04 16:19:27 +0200
committerPeter Maydell <peter.maydell@linaro.org>2025-07-10 09:13:03 +0100
commit3f1772cbdc152125d84d2f6e75ec06799a498b4e (patch)
tree040642dd86fd7a0f2b3eaaa050c107afae79529c
parentf73632932bf19788dfd0ff406c2a8fe98e827c14 (diff)
downloadqemu-3f1772cbdc152125d84d2f6e75ec06799a498b4e.zip
qemu-3f1772cbdc152125d84d2f6e75ec06799a498b4e.tar.gz
qemu-3f1772cbdc152125d84d2f6e75ec06799a498b4e.tar.bz2
arm/kvm: shorten one overly long line
Fixes: 804cfc7eedb7 ("arm/cpu: Store aa64isar0/aa64zfr0 into the idregs arrays") Signed-off-by: Cornelia Huck <cohuck@redhat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Eric Auger <eric.auger@redhat.com> Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-id: 20250704141927.38963-6-cohuck@redhat.com Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r--target/arm/kvm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/target/arm/kvm.c b/target/arm/kvm.c
index 426f8b1..8ab0d69 100644
--- a/target/arm/kvm.c
+++ b/target/arm/kvm.c
@@ -230,7 +230,8 @@ static uint64_t idregs_sysreg_to_kvm_reg(ARMSysRegs sysreg)
}
/* read a sysreg value and store it in the idregs */
-static int get_host_cpu_reg(int fd, ARMHostCPUFeatures *ahcf, ARMIDRegisterIdx index)
+static int get_host_cpu_reg(int fd, ARMHostCPUFeatures *ahcf,
+ ARMIDRegisterIdx index)
{
uint64_t *reg;
int ret;