igc: Remove no need declaration of the igc_power_down_link
We want to avoid forward-declarations of function if possible. Rearrange the igc_power_down_link function implementation. Signed-off-by: Sasha Neftin <sasha.neftin@intel.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
14504ac504
commit
1ab69fb357
|
@ -54,7 +54,6 @@ MODULE_DEVICE_TABLE(pci, igc_pci_tbl);
|
||||||
/* forward declaration */
|
/* forward declaration */
|
||||||
static int igc_sw_init(struct igc_adapter *);
|
static int igc_sw_init(struct igc_adapter *);
|
||||||
static void igc_configure(struct igc_adapter *adapter);
|
static void igc_configure(struct igc_adapter *adapter);
|
||||||
static void igc_power_down_link(struct igc_adapter *adapter);
|
|
||||||
static void igc_set_default_mac_filter(struct igc_adapter *adapter);
|
static void igc_set_default_mac_filter(struct igc_adapter *adapter);
|
||||||
static void igc_set_rx_mode(struct net_device *netdev);
|
static void igc_set_rx_mode(struct net_device *netdev);
|
||||||
static void igc_write_itr(struct igc_q_vector *q_vector);
|
static void igc_write_itr(struct igc_q_vector *q_vector);
|
||||||
|
@ -76,6 +75,16 @@ enum latency_range {
|
||||||
latency_invalid = 255
|
latency_invalid = 255
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* igc_power_down_link - Power down the phy/serdes link
|
||||||
|
* @adapter: address of board private structure
|
||||||
|
*/
|
||||||
|
static void igc_power_down_link(struct igc_adapter *adapter)
|
||||||
|
{
|
||||||
|
if (adapter->hw.phy.media_type == igc_media_type_copper)
|
||||||
|
igc_power_down_phy_copper_base(&adapter->hw);
|
||||||
|
}
|
||||||
|
|
||||||
void igc_reset(struct igc_adapter *adapter)
|
void igc_reset(struct igc_adapter *adapter)
|
||||||
{
|
{
|
||||||
struct pci_dev *pdev = adapter->pdev;
|
struct pci_dev *pdev = adapter->pdev;
|
||||||
|
@ -127,16 +136,6 @@ static void igc_power_up_link(struct igc_adapter *adapter)
|
||||||
igc_setup_link(&adapter->hw);
|
igc_setup_link(&adapter->hw);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* igc_power_down_link - Power down the phy link
|
|
||||||
* @adapter: address of board private structure
|
|
||||||
*/
|
|
||||||
static void igc_power_down_link(struct igc_adapter *adapter)
|
|
||||||
{
|
|
||||||
if (adapter->hw.phy.media_type == igc_media_type_copper)
|
|
||||||
igc_power_down_phy_copper_base(&adapter->hw);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* igc_release_hw_control - release control of the h/w to f/w
|
* igc_release_hw_control - release control of the h/w to f/w
|
||||||
* @adapter: address of board private structure
|
* @adapter: address of board private structure
|
||||||
|
|
Loading…
Reference in New Issue