Lean Sheng Tan has submitted this change. ( https://review.coreboot.org/c/coreboot/+/84988?usp=email )
Change subject: drivers/usb/intel_bluetooth: Change the Power Resource to S0 ......................................................................
drivers/usb/intel_bluetooth: Change the Power Resource to S0
This resource is applicable to S0, as it can be used to reset the wireless and for RTD3, so change it from S5.
Change-Id: I9ae710ef452c717ec414324d2847bf3218fd62d3 Signed-off-by: Sean Rhodes sean@starlabs.systems Reviewed-on: https://review.coreboot.org/c/coreboot/+/84988 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Nicholas Sudsgaard devel+coreboot@nsudsgaard.com --- M src/drivers/usb/acpi/intel_bluetooth.c 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: build bot (Jenkins): Verified Nicholas Sudsgaard: Looks good to me, approved
diff --git a/src/drivers/usb/acpi/intel_bluetooth.c b/src/drivers/usb/acpi/intel_bluetooth.c index 90f1636..aa3b794 100644 --- a/src/drivers/usb/acpi/intel_bluetooth.c +++ b/src/drivers/usb/acpi/intel_bluetooth.c @@ -98,7 +98,7 @@
acpigen_write_dsm_uuid_arr(uuid_callbacks, ARRAY_SIZE(uuid_callbacks)); /* - * PowerResource (BTRT, 0x05, 0x0000) + * PowerResource (BTRT, 0, 0) * { * Method (_STA, 0, NotSerialized) * { @@ -126,7 +126,7 @@ * } * } */ - acpigen_write_power_res("BTRT", 5, 0, NULL, 0); + acpigen_write_power_res("BTRT", 0, 0, NULL, 0); { acpigen_write_method("_STA", 0); {