diff mbox series

[PATCH_V2,2/2] Removed double declaration

Message ID 20210525023346.3206241-2-swethajoshi139@gmail.com (mailing list archive)
State New, archived
Headers show
Series [PATCH_V2,1/2] Adding ifdefs to call the respective routines only when their configs are enabled | expand

Commit Message

Swetha Joshi May 25, 2021, 2:33 a.m. UTC
---
 target/arm/kvm64.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
diff mbox series

Patch

diff --git a/target/arm/kvm64.c b/target/arm/kvm64.c
index 724ce78265..47a4d9d831 100644
--- a/target/arm/kvm64.c
+++ b/target/arm/kvm64.c
@@ -1405,8 +1405,8 @@  void kvm_arch_on_sigbus_vcpu(CPUState *c, int code, void *addr)
     VirtMachineState *vms = VIRT_MACHINE(obj);
     bool acpi_enabled = false;
 #ifdef CONFIG_ARM_VIRT
-    bool acpi_enabled = virt_is_acpi_enabled(vms);
-    #endif /* CONFIG_ARM_VIRT */
+    acpi_enabled = virt_is_acpi_enabled(vms);
+#endif /* CONFIG_ARM_VIRT */
 
     assert(code == BUS_MCEERR_AR || code == BUS_MCEERR_AO);
 
@@ -1431,8 +1431,8 @@  void kvm_arch_on_sigbus_vcpu(CPUState *c, int code, void *addr)
                 kvm_cpu_synchronize_state(c);
 #ifdef CONFIG_ACPI_APEI
                 if (acpi_ghes_record_errors(ACPI_HEST_SRC_ID_SEA, paddr)) {
-                  error_report("failed to record the error");
-                  abort();
+                    error_report("failed to record the error");
+                    abort();
                 }
 #endif /* CONFIG_ACPI_APEI */
                 kvm_inject_arm_sea(c);