diff options
author | Bruce Allan <bruce.w.allan@intel.com> | 2020-01-22 07:21:37 -0800 |
---|---|---|
committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2020-02-15 18:34:33 -0800 |
commit | 644f40ea0c08942f088fbcaf2f43d999fc64fce4 (patch) | |
tree | dac8f69a5153dae070eca051b0ef78b095cffb5d /drivers/net/ethernet/intel/ice/ice_main.c | |
parent | e0708aa8a5c4cc428f2b1d602e73143ce43ec758 (diff) | |
download | lwn-644f40ea0c08942f088fbcaf2f43d999fc64fce4.tar.gz lwn-644f40ea0c08942f088fbcaf2f43d999fc64fce4.zip |
ice: add function argument description to function header comment
Commit 0290bd291cc0 ("netdev: pass the stuck queue to the timeout handler")
introduced a new argument to the function but missed adding the description
of the argument to the function header comment. Add it now.
Signed-off-by: Bruce Allan <bruce.w.allan@intel.com>
Tested-by: Andrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/ethernet/intel/ice/ice_main.c')
-rw-r--r-- | drivers/net/ethernet/intel/ice/ice_main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/intel/ice/ice_main.c b/drivers/net/ethernet/intel/ice/ice_main.c index 160328cd0d7e..255317e4b1f3 100644 --- a/drivers/net/ethernet/intel/ice/ice_main.c +++ b/drivers/net/ethernet/intel/ice/ice_main.c @@ -5035,6 +5035,7 @@ ice_bridge_setlink(struct net_device *dev, struct nlmsghdr *nlh, /** * ice_tx_timeout - Respond to a Tx Hang * @netdev: network interface device structure + * @txqueue: Tx queue */ static void ice_tx_timeout(struct net_device *netdev, unsigned int txqueue) { |