drivers/net/ethernet: clean up mis-targeted comments
As part of the W=1 cleanups for ethernet, a million [*] driver
comments had to be cleaned up to get the W=1 compilation to
succeed. This change finally makes the drivers/net/ethernet tree
compile with W=1 set on the command line. NOTE: The kernel uses
kdoc style (see Documentation/process/kernel-doc.rst) when
documenting code, not doxygen or other styles.
After this patch the x86_64 build has no warnings from W=1, however
scripts/kernel-doc says there are 1545 more warnings in source files, that
I need to develop a script to fix in a followup patch.
The errors fixed here are all kdoc of a few classes, with a few outliers:
In file included from drivers/net/ethernet/qlogic/netxen/netxen_nic_hw.c:10:
drivers/net/ethernet/qlogic/netxen/netxen_nic.h:1193:18: warning: ‘FW_DUMP_LEVELS’ defined but not used [-Wunused-const-variable=]
1193 | static const u32 FW_DUMP_LEVELS[] = { 0x3, 0x7, 0xf, 0x1f, 0x3f, 0x7f, 0xff };
| ^~~~~~~~~~~~~~
... repeats 4 times...
drivers/net/ethernet/sun/cassini.c:2084:24: warning: suggest braces around empty body in an ‘else’ statement [-Wempty-body]
2084 | RX_USED_ADD(page, i);
drivers/net/ethernet/natsemi/ns83820.c: In function ‘phy_intr’:
drivers/net/ethernet/natsemi/ns83820.c:603:6: warning: variable ‘tbisr’ set but not used [-Wunused-but-set-variable]
603 | u32 tbisr, tanar, tanlpar;
| ^~~~~
drivers/net/ethernet/natsemi/ns83820.c: In function ‘ns83820_get_link_ksettings’:
drivers/net/ethernet/natsemi/ns83820.c:1207:11: warning: variable ‘tanar’ set but not used [-Wunused-but-set-variable]
1207 | u32 cfg, tanar, tbicr;
| ^~~~~
drivers/net/ethernet/packetengines/yellowfin.c:1063:18: warning: variable ‘yf_size’ set but not used [-Wunused-but-set-variable]
1063 | int data_size, yf_size;
| ^~~~~~~
Normal kdoc fixes:
warning: Function parameter or member 'x' not described in 'y'
warning: Excess function parameter 'x' description in 'y'
warning: Cannot understand <string> on line <NNN> - I thought it was a doc line
[*] - ok it wasn't quite a million, but it felt like it.
Signed-off-by: Jesse Brandeburg <jesse.brandeburg@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
add3c86aa2
commit
d0ea5cbdc2
@@ -97,7 +97,7 @@ void sxgbe_disable_eee_mode(struct sxgbe_priv_data * const priv)
|
||||
|
||||
/**
|
||||
* sxgbe_eee_ctrl_timer
|
||||
* @arg : data hook
|
||||
* @t: timer list containing a data
|
||||
* Description:
|
||||
* If there is no data transfer and if we are not in LPI state,
|
||||
* then MAC Transmitter can be moved to LPI state.
|
||||
@@ -255,7 +255,7 @@ static void sxgbe_adjust_link(struct net_device *dev)
|
||||
|
||||
/**
|
||||
* sxgbe_init_phy - PHY initialization
|
||||
* @dev: net device structure
|
||||
* @ndev: net device structure
|
||||
* Description: it initializes the driver's PHY state, and attaches the PHY
|
||||
* to the mac driver.
|
||||
* Return value:
|
||||
@@ -364,8 +364,11 @@ static int sxgbe_init_rx_buffers(struct net_device *dev,
|
||||
/**
|
||||
* sxgbe_free_rx_buffers - free what sxgbe_init_rx_buffers() allocated
|
||||
* @dev: net device structure
|
||||
* @p: dec pointer
|
||||
* @i: index
|
||||
* @dma_buf_sz: size
|
||||
* @rx_ring: ring to be freed
|
||||
* @rx_rsize: ring size
|
||||
*
|
||||
* Description: this function initializes the DMA RX descriptor
|
||||
*/
|
||||
static void sxgbe_free_rx_buffers(struct net_device *dev,
|
||||
@@ -383,6 +386,7 @@ static void sxgbe_free_rx_buffers(struct net_device *dev,
|
||||
/**
|
||||
* init_tx_ring - init the TX descriptor ring
|
||||
* @dev: net device structure
|
||||
* @queue_no: queue
|
||||
* @tx_ring: ring to be initialised
|
||||
* @tx_rsize: ring size
|
||||
* Description: this function initializes the DMA TX descriptor
|
||||
@@ -449,6 +453,7 @@ static void free_rx_ring(struct device *dev, struct sxgbe_rx_queue *rx_ring,
|
||||
/**
|
||||
* init_rx_ring - init the RX descriptor ring
|
||||
* @dev: net device structure
|
||||
* @queue_no: queue
|
||||
* @rx_ring: ring to be initialised
|
||||
* @rx_rsize: ring size
|
||||
* Description: this function initializes the DMA RX descriptor
|
||||
@@ -548,7 +553,7 @@ static void free_tx_ring(struct device *dev, struct sxgbe_tx_queue *tx_ring,
|
||||
|
||||
/**
|
||||
* init_dma_desc_rings - init the RX/TX descriptor rings
|
||||
* @dev: net device structure
|
||||
* @netd: net device structure
|
||||
* Description: this function initializes the DMA RX/TX descriptors
|
||||
* and allocates the socket buffers. It suppors the chained and ring
|
||||
* modes.
|
||||
@@ -724,7 +729,7 @@ static void sxgbe_mtl_operation_mode(struct sxgbe_priv_data *priv)
|
||||
|
||||
/**
|
||||
* sxgbe_tx_queue_clean:
|
||||
* @priv: driver private structure
|
||||
* @tqueue: queue pointer
|
||||
* Description: it reclaims resources after transmission completes.
|
||||
*/
|
||||
static void sxgbe_tx_queue_clean(struct sxgbe_tx_queue *tqueue)
|
||||
@@ -807,6 +812,7 @@ static void sxgbe_tx_all_clean(struct sxgbe_priv_data * const priv)
|
||||
/**
|
||||
* sxgbe_restart_tx_queue: irq tx error mng function
|
||||
* @priv: driver private structure
|
||||
* @queue_num: queue number
|
||||
* Description: it cleans the descriptors and restarts the transmission
|
||||
* in case of errors.
|
||||
*/
|
||||
@@ -1567,6 +1573,7 @@ static int sxgbe_poll(struct napi_struct *napi, int budget)
|
||||
/**
|
||||
* sxgbe_tx_timeout
|
||||
* @dev : Pointer to net device structure
|
||||
* @txqueue: index of the hanging queue
|
||||
* Description: this function is called when a packet transmission fails to
|
||||
* complete within a reasonable time. The driver will mark the error in the
|
||||
* netdev structure and arrange for the device to be reset to a sane state
|
||||
|
||||
Reference in New Issue
Block a user