From 1627e2f1586e44e8fafbc78c5a83f6fe90a10b1f Mon Sep 17 00:00:00 2001 From: Jacob Garber Date: Wed, 28 Oct 2020 20:03:53 -0600 Subject: cpu/x86/sipi_vector.S: Use correct suffix for bts The assembler is warning that the bts instruction is ambiguous, so use the correct suffix btsl. See also commit 693315160e (cpu/x86/sipi_vector.S: Use correct op suffix) Signed-off-by: Jacob Garber Change-Id: I2eded0af1258e90926009544683b23961d99887b Reviewed-on: https://review.coreboot.org/c/coreboot/+/46928 Tested-by: build bot (Jenkins) Reviewed-by: Nico Huber --- src/cpu/x86/sipi_vector.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/cpu') diff --git a/src/cpu/x86/sipi_vector.S b/src/cpu/x86/sipi_vector.S index ba1ecb7de6..054f30d2c4 100644 --- a/src/cpu/x86/sipi_vector.S +++ b/src/cpu/x86/sipi_vector.S @@ -121,7 +121,7 @@ _start: /* Protect microcode loading. */ lock_microcode: - lock bts $0, microcode_lock + lock btsl $0, microcode_lock jc lock_microcode load_microcode: -- cgit v1.2.3