blob: 94375b72c7023437357f3ea9caaeda560e70cd1a [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0 */
Ilya Yanok06bb9202012-11-06 13:48:21 +00002/*
3 * MUSB OTG driver debug defines
4 *
5 * Copyright 2005 Mentor Graphics Corporation
6 * Copyright (C) 2005-2006 by Texas Instruments
7 * Copyright (C) 2006-2007 Nokia Corporation
Ilya Yanok06bb9202012-11-06 13:48:21 +00008 */
9
10#ifndef __MUSB_LINUX_DEBUG_H__
11#define __MUSB_LINUX_DEBUG_H__
12
Simon Glassbdd5f812023-09-14 18:21:46 -060013#include <linux/printk.h>
Ilya Yanok06bb9202012-11-06 13:48:21 +000014#define yprintk(facility, format, args...) \
15 do { printk(facility "%s %d: " format , \
16 __func__, __LINE__ , ## args); } while (0)
17#define WARNING(fmt, args...) yprintk(KERN_WARNING, fmt, ## args)
18#define INFO(fmt, args...) yprintk(KERN_INFO, fmt, ## args)
19#define ERR(fmt, args...) yprintk(KERN_ERR, fmt, ## args)
20
21#ifdef CONFIG_DEBUG_FS
22int musb_init_debugfs(struct musb *musb);
23void musb_exit_debugfs(struct musb *musb);
24#else
25static inline int musb_init_debugfs(struct musb *musb)
26{
27 return 0;
28}
29static inline void musb_exit_debugfs(struct musb *musb)
30{
31}
32#endif
33
34#endif /* __MUSB_LINUX_DEBUG_H__ */