diff options
author | Sean Rhodes <sean@starlabs.systems> | 2024-10-02 13:34:13 +0100 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2024-10-09 01:19:41 +0000 |
commit | 7a39531af6ad2a3dccd2a277542c91c5d049a195 (patch) | |
tree | 21dbbb2f23190d242ca9a70ddd5903bfd3aa8964 /src/drivers/usb/acpi/Makefile.mk | |
parent | e80eea6d45943c3e6f020b3d07e36870af255698 (diff) |
drivers/usb/acpi: Move Intel Bluetooth functions to separate file
The code for Intel Bluetooth is unrelated to all other devices, and
needs to grow in size - move it to another file.
Change-Id: I65ccb9f2fd95b07fa63866485920539adc474873
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/84625
Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-by: Nicholas Sudsgaard <devel+coreboot@nsudsgaard.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/drivers/usb/acpi/Makefile.mk')
-rw-r--r-- | src/drivers/usb/acpi/Makefile.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/drivers/usb/acpi/Makefile.mk b/src/drivers/usb/acpi/Makefile.mk index e525b466c9..1bf1435955 100644 --- a/src/drivers/usb/acpi/Makefile.mk +++ b/src/drivers/usb/acpi/Makefile.mk @@ -1,3 +1,4 @@ ## SPDX-License-Identifier: GPL-2.0-only ramstage-$(CONFIG_DRIVERS_USB_ACPI) += usb_acpi.c +ramstage-$(CONFIG_DRIVERS_USB_ACPI) += intel_bluetooth.c |