hc
2024-01-05 071106ecf68c401173c58808b1cf5f68cc50d390
kernel/drivers/net/wireless/quantenna/qtnfmac/debug.c
....@@ -1,32 +1,13 @@
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
- */
1
+// SPDX-License-Identifier: GPL-2.0+
2
+/* Copyright (c) 2015-2016 Quantenna Communications. All rights reserved. */
163
174 #include "debug.h"
185
19
-#undef pr_fmt
20
-#define pr_fmt(fmt) "qtnfmac dbg: %s: " fmt, __func__
21
-
226 void qtnf_debugfs_init(struct qtnf_bus *bus, const char *name)
237 {
24
- bus->dbg_dir = debugfs_create_dir(name, NULL);
8
+ struct dentry *parent = qtnf_get_debugfs_dir();
259
26
- if (IS_ERR_OR_NULL(bus->dbg_dir)) {
27
- pr_warn("failed to create debugfs root dir\n");
28
- bus->dbg_dir = NULL;
29
- }
10
+ bus->dbg_dir = debugfs_create_dir(name, parent);
3011 }
3112
3213 void qtnf_debugfs_remove(struct qtnf_bus *bus)
....@@ -38,9 +19,5 @@
3819 void qtnf_debugfs_add_entry(struct qtnf_bus *bus, const char *name,
3920 int (*fn)(struct seq_file *seq, void *data))
4021 {
41
- struct dentry *entry;
42
-
43
- entry = debugfs_create_devm_seqfile(bus->dev, name, bus->dbg_dir, fn);
44
- if (IS_ERR_OR_NULL(entry))
45
- pr_warn("failed to add entry (%s)\n", name);
22
+ debugfs_create_devm_seqfile(bus->dev, name, bus->dbg_dir, fn);
4623 }