diff options
author | Masanari Iida <standby24x7@gmail.com> | 2015-02-14 16:26:34 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-02-15 07:34:49 +0300 |
commit | 4a26e453d99a06e3f1548569d7d405ce38878b78 (patch) | |
tree | 3ddefbaf446c39570115174d7c19d4859ec8ce7a /net/core | |
parent | 2b0ba96cea6066d2543066fa524120b384f3bd6b (diff) | |
download | linux-4a26e453d99a06e3f1548569d7d405ce38878b78.tar.xz |
net/core: Fix warning while make xmldocs caused by dev.c
This patch fix following warning wile make xmldocs.
Warning(.//net/core/dev.c:5345): No description found
for parameter 'bonding_info'
Warning(.//net/core/dev.c:5345): Excess function parameter
'netdev_bonding_info' description in 'netdev_bonding_info_change'
This warning starts to appear after following patch was added
into Linus's tree during merger period.
commit 61bd3857ff2c7daf756d49b41e6277bbdaa8f789
net/core: Add event for a change in slave state
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/dev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/dev.c b/net/core/dev.c index 48c6ecb18f3c..8f9710c62e20 100644 --- a/net/core/dev.c +++ b/net/core/dev.c @@ -5336,7 +5336,7 @@ EXPORT_SYMBOL(netdev_upper_dev_unlink); /** * netdev_bonding_info_change - Dispatch event about slave change * @dev: device - * @netdev_bonding_info: info to dispatch + * @bonding_info: info to dispatch * * Send NETDEV_BONDING_INFO to netdev notifiers with info. * The caller must hold the RTNL lock. |