hci_debugfs.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. BlueZ - Bluetooth protocol stack for Linux
  3. Copyright (C) 2014 Intel Corporation
  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. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  8. OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  9. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
  10. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
  11. CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
  12. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  13. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  14. OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  15. ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
  16. COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
  17. SOFTWARE IS DISCLAIMED.
  18. */
  19. #if IS_ENABLED(CONFIG_BT_DEBUGFS)
  20. void hci_debugfs_create_common(struct hci_dev *hdev);
  21. void hci_debugfs_create_bredr(struct hci_dev *hdev);
  22. void hci_debugfs_create_le(struct hci_dev *hdev);
  23. void hci_debugfs_create_conn(struct hci_conn *conn);
  24. #else
  25. static inline void hci_debugfs_create_common(struct hci_dev *hdev)
  26. {
  27. }
  28. static inline void hci_debugfs_create_bredr(struct hci_dev *hdev)
  29. {
  30. }
  31. static inline void hci_debugfs_create_le(struct hci_dev *hdev)
  32. {
  33. }
  34. static inline void hci_debugfs_create_conn(struct hci_conn *conn)
  35. {
  36. }
  37. #endif