mirror of https://gitee.com/openkylin/linux.git
batman-adv: Strip dots from variable macro kerneldoc
The commit 43756e347f
("scripts/kernel-doc: Add support for named
variable macro arguments") changed the handling of variable macro
parameters. The three dots of the argument must no longer be added to the
kernel doc. The support for the old format is scheduled to be removed in
the future.
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>
This commit is contained in:
parent
a7c4a547ea
commit
f4191c6d80
|
@ -74,7 +74,7 @@ __printf(2, 3);
|
|||
* @bat_priv: the bat priv with all the soft interface information
|
||||
* @ratelimited: whether output should be rate limited
|
||||
* @fmt: format string
|
||||
* @arg...: variable arguments
|
||||
* @arg: variable arguments
|
||||
*/
|
||||
#define _batadv_dbg(type, bat_priv, ratelimited, fmt, arg...) \
|
||||
do { \
|
||||
|
@ -98,7 +98,7 @@ static inline void _batadv_dbg(int type __always_unused,
|
|||
* batadv_dbg() - Store debug output without ratelimiting
|
||||
* @type: type of debug message
|
||||
* @bat_priv: the bat priv with all the soft interface information
|
||||
* @arg...: format string and variable arguments
|
||||
* @arg: format string and variable arguments
|
||||
*/
|
||||
#define batadv_dbg(type, bat_priv, arg...) \
|
||||
_batadv_dbg(type, bat_priv, 0, ## arg)
|
||||
|
@ -107,7 +107,7 @@ static inline void _batadv_dbg(int type __always_unused,
|
|||
* batadv_dbg_ratelimited() - Store debug output with ratelimiting
|
||||
* @type: type of debug message
|
||||
* @bat_priv: the bat priv with all the soft interface information
|
||||
* @arg...: format string and variable arguments
|
||||
* @arg: format string and variable arguments
|
||||
*/
|
||||
#define batadv_dbg_ratelimited(type, bat_priv, arg...) \
|
||||
_batadv_dbg(type, bat_priv, 1, ## arg)
|
||||
|
@ -116,7 +116,7 @@ static inline void _batadv_dbg(int type __always_unused,
|
|||
* batadv_info() - Store message in debug buffer and print it to kmsg buffer
|
||||
* @net_dev: the soft interface net device
|
||||
* @fmt: format string
|
||||
* @arg...: variable arguments
|
||||
* @arg: variable arguments
|
||||
*/
|
||||
#define batadv_info(net_dev, fmt, arg...) \
|
||||
do { \
|
||||
|
@ -130,7 +130,7 @@ static inline void _batadv_dbg(int type __always_unused,
|
|||
* batadv_err() - Store error in debug buffer and print it to kmsg buffer
|
||||
* @net_dev: the soft interface net device
|
||||
* @fmt: format string
|
||||
* @arg...: variable arguments
|
||||
* @arg: variable arguments
|
||||
*/
|
||||
#define batadv_err(net_dev, fmt, arg...) \
|
||||
do { \
|
||||
|
|
Loading…
Reference in New Issue