diff options
author | 2021-04-14 14:18:48 +0200 | |
---|---|---|
committer | 2021-04-14 20:54:40 +0200 | |
commit | 07d488b0c1d4c4d3f4729d19606f424df3a80109 (patch) | |
tree | fd6f1b3e66a08420493890f16cf7a2ee17b3f7fb /tools/perf/scripts/python/export-to-postgresql.py | |
parent | staging: rtl8723bs: fix indentation issue introduced by long line split (diff) | |
download | wireguard-linux-07d488b0c1d4c4d3f4729d19606f424df3a80109.tar.xz wireguard-linux-07d488b0c1d4c4d3f4729d19606f424df3a80109.zip |
staging: rtl8723bs: replace DBG_871X_SEL_NL with netdev_dbg()
replace DGB_871X_SEL_NL macro with netdev_dbg().
DBG_871X_SEL_NL macro expands to a raw prink call or a
seq_printf if selected stream _is not_ a local
debug symbol set to null.
This second scenario never occurs so replace
all macro usages with netdev_dbg().
This is done with the following coccinelle script:
@@
expression sel;
expression list args;
identifier padapter;
identifier func;
@@
func(..., struct adapter *padapter, ...) {
<...
- DBG_871X_SEL_NL(sel, args);
+ netdev_dbg(padapter->pnetdev, args);
...>
}
fix by hand one coccinelle output newline issue
Signed-off-by: Fabio Aiuto <fabioaiuto83@gmail.com>
Link: https://lore.kernel.org/r/9d4597097d75a1900c65e4a15077eb0c8bce1c9b.1618401896.git.fabioaiuto83@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'tools/perf/scripts/python/export-to-postgresql.py')
0 files changed, 0 insertions, 0 deletions