diff options
author | Luiz Augusto von Dentz <luiz.von.dentz@intel.com> | 2021-09-21 11:25:04 -0700 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2021-09-22 16:17:13 +0200 |
commit | 8331dc487fc55963e853b6858af716907717e181 (patch) | |
tree | ce4e1e1971148aec19b7d6996b5aaf4b46bf03a2 /net/bluetooth/hci_debugfs.h | |
parent | 3e5f2d90c28f9454e421108554707620bc23269d (diff) |
Bluetooth: hci_core: Move all debugfs handling to hci_debugfs.c
This moves hci_debugfs_create_basic to hci_debugfs.c which is where all
the others debugfs entries are handled.
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth/hci_debugfs.h')
-rw-r--r-- | net/bluetooth/hci_debugfs.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/bluetooth/hci_debugfs.h b/net/bluetooth/hci_debugfs.h index 4444dc8cedc2..9a8a7c93bb12 100644 --- a/net/bluetooth/hci_debugfs.h +++ b/net/bluetooth/hci_debugfs.h @@ -26,6 +26,7 @@ void hci_debugfs_create_common(struct hci_dev *hdev); void hci_debugfs_create_bredr(struct hci_dev *hdev); void hci_debugfs_create_le(struct hci_dev *hdev); void hci_debugfs_create_conn(struct hci_conn *conn); +void hci_debugfs_create_basic(struct hci_dev *hdev); #else @@ -45,4 +46,8 @@ static inline void hci_debugfs_create_conn(struct hci_conn *conn) { } +static inline void hci_debugfs_create_basic(struct hci_dev *hdev) +{ +} + #endif |