mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-29 01:09:33 -04:00
ice: fix unused parameter warning
Depending on PAGE_SIZE, the following unused parameter warning can be
reported:
drivers/net/ethernet/intel/ice/ice_txrx.c: In function ‘ice_rx_frame_truesize’:
drivers/net/ethernet/intel/ice/ice_txrx.c:513:21: warning: unused parameter ‘size’ [-Wunused-parameter]
unsigned int size)
The 'size' variable is used only when PAGE_SIZE >= 8192. Add __maybe_unused
to remove the warning.
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
Tested-by: Andrew Bowers <andrewx.bowers@intel.com>
This commit is contained in:
@@ -509,8 +509,8 @@ static unsigned int ice_rx_offset(struct ice_ring *rx_ring)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static unsigned int ice_rx_frame_truesize(struct ice_ring *rx_ring,
|
||||
unsigned int size)
|
||||
static unsigned int
|
||||
ice_rx_frame_truesize(struct ice_ring *rx_ring, unsigned int __maybe_unused size)
|
||||
{
|
||||
unsigned int truesize;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user