igb: make a few local functions static
Clean up a few sparse warnings, these following functions can be made static: drivers/net/ethernet/intel/igb/igb_main.c: warning: symbol 'igb_add_mac_filter' was not declared. Should it be static? drivers/net/ethernet/intel/igb/igb_main.c: warning: symbol 'igb_del_mac_filter' was not declared. Should it be static? drivers/net/ethernet/intel/igb/igb_main.c: warning: symbol 'igb_set_vf_mac_filter' was not declared. Should it be static? Signed-off-by: Colin Ian King <colin.king@canonical.com> Tested-by: Aaron Brown <aaron.f.brown@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
50dffe7fad
commit
b476deab8f
|
@ -6469,8 +6469,8 @@ static void igb_set_default_mac_filter(struct igb_adapter *adapter)
|
||||||
igb_rar_set_index(adapter, 0);
|
igb_rar_set_index(adapter, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
int igb_add_mac_filter(struct igb_adapter *adapter, const u8 *addr,
|
static int igb_add_mac_filter(struct igb_adapter *adapter, const u8 *addr,
|
||||||
const u8 queue)
|
const u8 queue)
|
||||||
{
|
{
|
||||||
struct e1000_hw *hw = &adapter->hw;
|
struct e1000_hw *hw = &adapter->hw;
|
||||||
int rar_entries = hw->mac.rar_entry_count -
|
int rar_entries = hw->mac.rar_entry_count -
|
||||||
|
@ -6499,8 +6499,8 @@ int igb_add_mac_filter(struct igb_adapter *adapter, const u8 *addr,
|
||||||
return -ENOSPC;
|
return -ENOSPC;
|
||||||
}
|
}
|
||||||
|
|
||||||
int igb_del_mac_filter(struct igb_adapter *adapter, const u8 *addr,
|
static int igb_del_mac_filter(struct igb_adapter *adapter, const u8 *addr,
|
||||||
const u8 queue)
|
const u8 queue)
|
||||||
{
|
{
|
||||||
struct e1000_hw *hw = &adapter->hw;
|
struct e1000_hw *hw = &adapter->hw;
|
||||||
int rar_entries = hw->mac.rar_entry_count -
|
int rar_entries = hw->mac.rar_entry_count -
|
||||||
|
@ -6552,8 +6552,8 @@ static int igb_uc_unsync(struct net_device *netdev, const unsigned char *addr)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int igb_set_vf_mac_filter(struct igb_adapter *adapter, const int vf,
|
static int igb_set_vf_mac_filter(struct igb_adapter *adapter, const int vf,
|
||||||
const u32 info, const u8 *addr)
|
const u32 info, const u8 *addr)
|
||||||
{
|
{
|
||||||
struct pci_dev *pdev = adapter->pdev;
|
struct pci_dev *pdev = adapter->pdev;
|
||||||
struct vf_data_storage *vf_data = &adapter->vf_data[vf];
|
struct vf_data_storage *vf_data = &adapter->vf_data[vf];
|
||||||
|
|
Loading…
Reference in New Issue