diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2018-01-23 06:14:25 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-01-23 19:06:50 +0300 |
commit | 9e55e5d30f6c6ebaa1ada11814bc067a4fe3cfd9 (patch) | |
tree | ff224a1df5bac9202065173a7682148371578971 /include/linux/netdevice.h | |
parent | e8a22b5f079449f1803d37ce2b5d09acaa68368d (diff) | |
download | linux-9e55e5d30f6c6ebaa1ada11814bc067a4fe3cfd9.tar.xz |
net: core: Fix kernel-doc for carrier_* attributes
Fix the documentation warning:
include/linux/netdevice.h:1939: warning: Excess struct member 'carrier_changes' description in 'net_device'
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Fixes: b2d3bcfa26a7 ("net: core: Expose number of link up/down transitions")
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/netdevice.h')
-rw-r--r-- | include/linux/netdevice.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 837e9cb7e358..581495f4e487 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -1469,8 +1469,6 @@ enum netdev_priv_flags { * @base_addr: Device I/O address * @irq: Device IRQ number * - * @carrier_changes: Stats to monitor carrier on<->off transitions - * * @state: Generic network queuing layer state, see netdev_state_t * @dev_list: The global list of network devices * @napi_list: List entry used for polling NAPI devices @@ -1506,6 +1504,8 @@ enum netdev_priv_flags { * do not use this in drivers * @rx_nohandler: nohandler dropped packets by core network on * inactive devices, do not use this in drivers + * @carrier_up_count: Number of times the carrier has been up + * @carrier_down_count: Number of times the carrier has been down * * @wireless_handlers: List of functions to handle Wireless Extensions, * instead of ioctl, |