/*1BlueZ - Bluetooth protocol stack for Linux2Copyright (C) 2014 Intel Corporation34This program is free software; you can redistribute it and/or modify5it under the terms of the GNU General Public License version 2 as6published by the Free Software Foundation;78THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS9OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,10FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.11IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY12CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES13WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN14ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF15OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.1617ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,18COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS19SOFTWARE IS DISCLAIMED.20*/2122#if IS_ENABLED(CONFIG_BT_DEBUGFS)2324void hci_debugfs_create_common(struct hci_dev *hdev);25void hci_debugfs_create_bredr(struct hci_dev *hdev);26void hci_debugfs_create_le(struct hci_dev *hdev);27void hci_debugfs_create_conn(struct hci_conn *conn);28void hci_debugfs_create_basic(struct hci_dev *hdev);2930#else3132static inline void hci_debugfs_create_common(struct hci_dev *hdev)33{34}3536static inline void hci_debugfs_create_bredr(struct hci_dev *hdev)37{38}3940static inline void hci_debugfs_create_le(struct hci_dev *hdev)41{42}4344static inline void hci_debugfs_create_conn(struct hci_conn *conn)45{46}4748static inline void hci_debugfs_create_basic(struct hci_dev *hdev)49{50}5152#endif535455