drivers/usb/acpi: Don't add GPIOs to _CRS for Intel Bluetooth

These are not needed as they are controlled via a power
resource that is specific to Intel Bluetooth.

Change-Id: I8502d03db3d43385ac19bc3c17a79232bde1aa94
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/85866
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
This commit is contained in:
Sean Rhodes 2024-10-24 14:28:13 +01:00
commit d5c364235f

View file

@ -10,6 +10,9 @@
static bool usb_acpi_add_gpios_to_crs(struct drivers_usb_acpi_config *cfg)
{
if (cfg->is_intel_bluetooth)
return false;
if (cfg->privacy_gpio.pin_count)
return true;