diff options
author | Martin Kaiser <[email protected]> | 2021-08-07 17:36:36 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2021-08-10 12:14:20 +0200 |
commit | 2abc0000d2970bb631dd39a151b46ba334526130 (patch) | |
tree | 1196b7e15217e8c4b82723f3ea65bd0d06a56d2c | |
parent | ac338b17bbf798f9baf2604f65c54c32c063f10c (diff) |
staging: r8188eu: remove the RT_TRACE macro
We've deleted all RT_TRACE calls. The macro itself can now be removed
as well.
Signed-off-by: Martin Kaiser <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/staging/r8188eu/include/rtw_debug.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/drivers/staging/r8188eu/include/rtw_debug.h b/drivers/staging/r8188eu/include/rtw_debug.h index 83c71275c47b..3c3bf2a4f30e 100644 --- a/drivers/staging/r8188eu/include/rtw_debug.h +++ b/drivers/staging/r8188eu/include/rtw_debug.h @@ -72,15 +72,6 @@ extern u32 GlobalDebugLevel; pr_info(DRIVER_PREFIX __VA_ARGS__); \ } while (0) -#define RT_TRACE(_comp, _level, fmt) \ - do { \ - if (_level <= GlobalDebugLevel) { \ - pr_info("%s [0x%08x,%d]", DRIVER_PREFIX, \ - (unsigned int)_comp, _level); \ - pr_info fmt; \ - } \ - } while (0) - int proc_get_drv_version(char *page, char **start, off_t offset, int count, int *eof, void *data); |