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 <jgarber1@ualberta.ca>
Change-Id: I2eded0af1258e90926009544683b23961d99887b
Reviewed-on: https://review.coreboot.org/c/coreboot/+/46928
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
Jacob Garber 2020-10-28 20:03:53 -06:00 committed by Nico Huber
parent 1fa72d5fe1
commit 1627e2f158
1 changed files with 1 additions and 1 deletions

View File

@ -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: