debug.c 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * Copyright (c) 2015-2016 Quantenna Communications, Inc.
  3. * All rights reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License
  7. * as published by the Free Software Foundation; either version 2
  8. * of the License, or (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. */
  16. #include "debug.h"
  17. #undef pr_fmt
  18. #define pr_fmt(fmt) "qtnfmac dbg: %s: " fmt, __func__
  19. void qtnf_debugfs_init(struct qtnf_bus *bus, const char *name)
  20. {
  21. bus->dbg_dir = debugfs_create_dir(name, NULL);
  22. if (IS_ERR_OR_NULL(bus->dbg_dir)) {
  23. pr_warn("failed to create debugfs root dir\n");
  24. bus->dbg_dir = NULL;
  25. }
  26. }
  27. void qtnf_debugfs_remove(struct qtnf_bus *bus)
  28. {
  29. debugfs_remove_recursive(bus->dbg_dir);
  30. bus->dbg_dir = NULL;
  31. }
  32. void qtnf_debugfs_add_entry(struct qtnf_bus *bus, const char *name,
  33. int (*fn)(struct seq_file *seq, void *data))
  34. {
  35. struct dentry *entry;
  36. entry = debugfs_create_devm_seqfile(bus->dev, name, bus->dbg_dir, fn);
  37. if (IS_ERR_OR_NULL(entry))
  38. pr_warn("failed to add entry (%s)\n", name);
  39. }