/* SPDX-License-Identifier: GPL-2.0-only */1/*2* Copyright 2015, Heiner Kallweit <[email protected]>3*/45#if IS_ENABLED(CONFIG_BT_LEDS)67void hci_leds_update_powered(struct hci_dev *hdev, bool enabled);8void hci_leds_init(struct hci_dev *hdev);910void bt_leds_init(void);11void bt_leds_cleanup(void);1213#else1415static inline void hci_leds_update_powered(struct hci_dev *hdev,16bool enabled) {}17static inline void hci_leds_init(struct hci_dev *hdev) {}1819static inline void bt_leds_init(void) {}20static inline void bt_leds_cleanup(void) {}2122#endif232425