2019-06-04 10:11:33 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2016-01-08 19:28:58 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2015, Heiner Kallweit <hkallweit1@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if IS_ENABLED(CONFIG_BT_LEDS)
|
2016-07-21 14:12:41 +02:00
|
|
|
|
2016-01-08 19:28:58 +01:00
|
|
|
void hci_leds_update_powered(struct hci_dev *hdev, bool enabled);
|
|
|
|
void hci_leds_init(struct hci_dev *hdev);
|
2016-07-21 14:12:41 +02:00
|
|
|
|
|
|
|
void bt_leds_init(void);
|
|
|
|
void bt_leds_cleanup(void);
|
|
|
|
|
2016-01-08 19:28:58 +01:00
|
|
|
#else
|
2016-07-21 14:12:41 +02:00
|
|
|
|
2016-01-08 19:28:58 +01:00
|
|
|
static inline void hci_leds_update_powered(struct hci_dev *hdev,
|
|
|
|
bool enabled) {}
|
|
|
|
static inline void hci_leds_init(struct hci_dev *hdev) {}
|
2016-07-21 14:12:41 +02:00
|
|
|
|
|
|
|
static inline void bt_leds_init(void) {}
|
|
|
|
static inline void bt_leds_cleanup(void) {}
|
|
|
|
|
2016-01-08 19:28:58 +01:00
|
|
|
#endif
|