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>
This commit is contained in:
parent
5776ea9d04
commit
741017dfe8
1 changed files with 2 additions and 2 deletions
|
|
@ -267,7 +267,7 @@ void acpi_device_intel_bt_common(unsigned int enable_gpio, unsigned int reset_gp
|
|||
acpigen_write_mutex("CNMT", 0);
|
||||
|
||||
/*
|
||||
* Method (SBTE, 1, Serialized)
|
||||
* Method (SBTE, 1, NotSerialized)
|
||||
* {
|
||||
* If (Arg0 == 1)
|
||||
* {
|
||||
|
|
@ -277,7 +277,7 @@ void acpi_device_intel_bt_common(unsigned int enable_gpio, unsigned int reset_gp
|
|||
* }
|
||||
* }
|
||||
*/
|
||||
acpigen_write_method_serialized("SBTE", 1);
|
||||
acpigen_write_method("SBTE", 1);
|
||||
{
|
||||
if (enable_gpio) {
|
||||
acpigen_write_if_lequal_op_int(ARG0_OP, 1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue