Skip to content

Commit 4294625

Browse files
jhovoldholtmann
authored andcommitted
Bluetooth: avoid silent hci_bcm ACPI PM regression
The hci_bcm platform-device hack which was used to implement power management for ACPI devices is being replaced by a serial-device-bus implementation. Unfortunately, when the corresponding change to the ACPI code lands (a change that will stop enumerating and registering the serial-device-node child as a platform device) PM will break silently unless serdev TTY-port controller support has been enabled. Specifically, hciattach (btattach) would still succeed, but power management would no longer work. Although this is strictly a runtime dependency, let's make the driver depend on SERIAL_DEV_CTRL_TTYPORT, which is the particular serdev controller implementation used by the ACPI devices currently managed by this driver, to avoid breaking PM without anyone noticing. Note that the driver already has a (build-time) dependency on the serdev bus code. Signed-off-by: Johan Hovold <[email protected]> Signed-off-by: Marcel Holtmann <[email protected]>
1 parent e8bfe86 commit 4294625

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

drivers/bluetooth/Kconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ config BT_HCIUART_BCM
169169
bool "Broadcom protocol support"
170170
depends on BT_HCIUART
171171
depends on BT_HCIUART_SERDEV
172+
depends on (!ACPI || SERIAL_DEV_CTRL_TTYPORT)
172173
select BT_HCIUART_H4
173174
select BT_BCM
174175
help

0 commit comments

Comments
 (0)