treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / drivers / usb / mtu3 / mtu3_debug.h
blobe96a69234d05f5a5357ad532100dd663bbb210b0
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * mtu3_debug.h - debug header
5 * Copyright (C) 2019 MediaTek Inc.
7 * Author: Chunfeng Yun <chunfeng.yun@mediatek.com>
8 */
10 #ifndef __MTU3_DEBUG_H__
11 #define __MTU3_DEBUG_H__
13 #include <linux/debugfs.h>
15 #define MTU3_DEBUGFS_NAME_LEN 32
17 struct mtu3_regset {
18 char name[MTU3_DEBUGFS_NAME_LEN];
19 struct debugfs_regset32 regset;
20 size_t nregs;
23 struct mtu3_file_map {
24 const char *name;
25 int (*show)(struct seq_file *s, void *unused);
28 #if IS_ENABLED(CONFIG_DEBUG_FS)
29 void ssusb_dev_debugfs_init(struct ssusb_mtk *ssusb);
30 void ssusb_dr_debugfs_init(struct ssusb_mtk *ssusb);
31 void ssusb_debugfs_create_root(struct ssusb_mtk *ssusb);
32 void ssusb_debugfs_remove_root(struct ssusb_mtk *ssusb);
34 #else
35 static inline void ssusb_dev_debugfs_init(struct ssusb_mtk *ssusb) {}
36 static inline void ssusb_dr_debugfs_init(struct ssusb_mtk *ssusb) {}
37 static inline void ssusb_debugfs_create_root(struct ssusb_mtk *ssusb) {}
38 static inline void ssusb_debugfs_remove_root(struct ssusb_mtk *ssusb) {}
40 #endif /* CONFIG_DEBUG_FS */
42 #if IS_ENABLED(CONFIG_TRACING)
43 void mtu3_dbg_trace(struct device *dev, const char *fmt, ...);
45 #else
46 static inline void mtu3_dbg_trace(struct device *dev, const char *fmt, ...) {}
48 #endif /* CONFIG_TRACING */
50 #endif /* __MTU3_DEBUG_H__ */