Commit 44834700 authored by Jacob Keller's avatar Jacob Keller Committed by Jeff Kirsher

ixgbe: fixup header for ixgbe_set_rxpba_82598

The header above this function did not match the function prototype.
This patch rewords the comment to specify the correct parameters.
Signed-off-by: default avatarJacob Keller <jacob.e.keller@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent b89aae71
...@@ -1241,14 +1241,14 @@ static void ixgbe_set_lan_id_multi_port_pcie_82598(struct ixgbe_hw *hw) ...@@ -1241,14 +1241,14 @@ static void ixgbe_set_lan_id_multi_port_pcie_82598(struct ixgbe_hw *hw)
} }
/** /**
* ixgbe_set_rxpba_82598 - Configure packet buffers * ixgbe_set_rxpba_82598 - Initialize RX packet buffer
* @hw: pointer to hardware structure * @hw: pointer to hardware structure
* @dcb_config: pointer to ixgbe_dcb_config structure * @num_pb: number of packet buffers to allocate
* * @headroom: reserve n KB of headroom
* Configure packet buffers. * @strategy: packet buffer allocation strategy
*/ **/
static void ixgbe_set_rxpba_82598(struct ixgbe_hw *hw, int num_pb, u32 headroom, static void ixgbe_set_rxpba_82598(struct ixgbe_hw *hw, int num_pb,
int strategy) u32 headroom, int strategy)
{ {
u32 rxpktsize = IXGBE_RXPBSIZE_64KB; u32 rxpktsize = IXGBE_RXPBSIZE_64KB;
u8 i = 0; u8 i = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment