blob: 068261a4e12c5521a021f22f514930460917e013 [file] [log] [blame]
Heiner Kallweit6d5d2ee2016-01-08 19:28:58 +01001/*
2 * Copyright 2015, Heiner Kallweit <hkallweit1@gmail.com>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9#if IS_ENABLED(CONFIG_BT_LEDS)
10void hci_leds_update_powered(struct hci_dev *hdev, bool enabled);
11void hci_leds_init(struct hci_dev *hdev);
12void hci_leds_exit(struct hci_dev *hdev);
13#else
14static inline void hci_leds_update_powered(struct hci_dev *hdev,
15 bool enabled) {}
16static inline void hci_leds_init(struct hci_dev *hdev) {}
17static inline void hci_leds_exit(struct hci_dev *hdev) {}
18#endif