apic_write_around will be expanded to apic_write in 64bit mode
anyway. Only a few CPUs (well, old CPUs to be precise) requires
such an action. In general it should not hurt and could be cleaned
up for apic_write (just in case)
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Cc: hpa@zytor.com
Cc: mingo@redhat.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
 
 static void __acpi_nmi_disable(void *__unused)
 {
-       apic_write(APIC_LVT0, APIC_DM_NMI | APIC_LVT_MASKED);
+       apic_write_around(APIC_LVT0, APIC_DM_NMI | APIC_LVT_MASKED);
 }
 
 /*
 
 
 static void __acpi_nmi_enable(void *__unused)
 {
-       apic_write(APIC_LVT0, APIC_DM_NMI);
+       apic_write_around(APIC_LVT0, APIC_DM_NMI);
 }
 
 /*
 
 static void __acpi_nmi_disable(void *__unused)
 {
-       apic_write(APIC_LVT0, APIC_DM_NMI | APIC_LVT_MASKED);
+       apic_write_around(APIC_LVT0, APIC_DM_NMI | APIC_LVT_MASKED);
 }
 
 /*