David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2015, Heiner Kallweit <hkallweit1@gmail.com> |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #if IS_ENABLED(CONFIG_BT_LEDS) |
| 7 | |
| 8 | void hci_leds_update_powered(struct hci_dev *hdev, bool enabled); |
| 9 | void hci_leds_init(struct hci_dev *hdev); |
| 10 | |
| 11 | void bt_leds_init(void); |
| 12 | void bt_leds_cleanup(void); |
| 13 | |
| 14 | #else |
| 15 | |
| 16 | static inline void hci_leds_update_powered(struct hci_dev *hdev, |
| 17 | bool enabled) {} |
| 18 | static inline void hci_leds_init(struct hci_dev *hdev) {} |
| 19 | |
| 20 | static inline void bt_leds_init(void) {} |
| 21 | static inline void bt_leds_cleanup(void) {} |
| 22 | |
| 23 | #endif |