2024-09-09 08:52:07 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2010 Broadcom Corporation
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
|
|
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
|
|
|
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BRCMF_DBG_H_
|
|
|
|
#define _BRCMF_DBG_H_
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
#if defined(BCMDBG)
|
2024-09-09 08:52:07 +00:00
|
|
|
|
|
|
|
#define brcmf_dbg(level, fmt, ...) \
|
|
|
|
do { \
|
|
|
|
if (BRCMF_ERROR_VAL == BRCMF_##level##_VAL) { \
|
|
|
|
if (brcmf_msg_level & BRCMF_##level##_VAL) { \
|
|
|
|
if (net_ratelimit()) \
|
2024-09-09 08:57:42 +00:00
|
|
|
printk(KERN_DEBUG "%s: " fmt, \
|
|
|
|
__func__, ##__VA_ARGS__); \
|
2024-09-09 08:52:07 +00:00
|
|
|
} \
|
|
|
|
} else { \
|
|
|
|
if (brcmf_msg_level & BRCMF_##level##_VAL) { \
|
2024-09-09 08:57:42 +00:00
|
|
|
printk(KERN_DEBUG "%s: " fmt, \
|
|
|
|
__func__, ##__VA_ARGS__); \
|
2024-09-09 08:52:07 +00:00
|
|
|
} \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define BRCMF_DATA_ON() (brcmf_msg_level & BRCMF_DATA_VAL)
|
|
|
|
#define BRCMF_CTL_ON() (brcmf_msg_level & BRCMF_CTL_VAL)
|
|
|
|
#define BRCMF_HDRS_ON() (brcmf_msg_level & BRCMF_HDRS_VAL)
|
|
|
|
#define BRCMF_BYTES_ON() (brcmf_msg_level & BRCMF_BYTES_VAL)
|
|
|
|
#define BRCMF_GLOM_ON() (brcmf_msg_level & BRCMF_GLOM_VAL)
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
#else /* (defined BCMDBG) || (defined BCMDBG) */
|
2024-09-09 08:52:07 +00:00
|
|
|
|
|
|
|
#define brcmf_dbg(level, fmt, ...) no_printk(fmt, ##__VA_ARGS__)
|
|
|
|
|
|
|
|
#define BRCMF_DATA_ON() 0
|
|
|
|
#define BRCMF_CTL_ON() 0
|
|
|
|
#define BRCMF_HDRS_ON() 0
|
|
|
|
#define BRCMF_BYTES_ON() 0
|
|
|
|
#define BRCMF_GLOM_ON() 0
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
#endif /* defined(BCMDBG) */
|
2024-09-09 08:52:07 +00:00
|
|
|
|
|
|
|
extern int brcmf_msg_level;
|
|
|
|
|
|
|
|
#endif /* _BRCMF_DBG_H_ */
|