Sean Rhodes has submitted this change. ( https://review.coreboot.org/c/coreboot/+/86504?usp=email )
Change subject: drivers/usb/acpi: Make SBTE Method NotSerialized ......................................................................
drivers/usb/acpi: Make SBTE Method NotSerialized
This method calls STXS and CTXS, which are both serialized so this method itself does not need to be serialized.
Change-Id: Ia46eaa8746bcff5a57831c14a2845139116b01da Signed-off-by: Sean Rhodes sean@starlabs.systems Reviewed-on: https://review.coreboot.org/c/coreboot/+/86504 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Matt DeVillier matt.devillier@gmail.com Reviewed-by: Andy Ebrahiem ahmet.ebrahiem@9elements.com --- M src/drivers/usb/acpi/intel_bluetooth.c 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: build bot (Jenkins): Verified Andy Ebrahiem: Looks good to me, but someone else must approve Matt DeVillier: Looks good to me, approved
diff --git a/src/drivers/usb/acpi/intel_bluetooth.c b/src/drivers/usb/acpi/intel_bluetooth.c index d83bcb2..2678d52 100644 --- a/src/drivers/usb/acpi/intel_bluetooth.c +++ b/src/drivers/usb/acpi/intel_bluetooth.c @@ -267,7 +267,7 @@ acpigen_write_mutex("CNMT", 0);
/* - * Method (SBTE, 1, Serialized) + * Method (SBTE, 1, NotSerialized) * { * If (Arg0 == 1) * { @@ -277,7 +277,7 @@ * } * } */ - acpigen_write_method_serialized("SBTE", 1); + acpigen_write_method("SBTE", 1); { if (enable_gpio) { acpigen_write_if_lequal_op_int(ARG0_OP, 1);