be2net: get rid of be_get_initial_config() call from be_probe()
Most of the code to fetch the adapter state is in be_setup()->be_get_config(). So, move the code from be_get_initial_config() to be_get_config(). Signed-off-by: Sathya Perla <sathya.perla@emulex.com> Signed-off-by: Kalesh AP <kalesh.purayil@emulex.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
78fad34eb8
commit
6b085ba927
|
@ -3771,13 +3771,25 @@ static void be_sriov_config(struct be_adapter *adapter)
|
||||||
|
|
||||||
static int be_get_config(struct be_adapter *adapter)
|
static int be_get_config(struct be_adapter *adapter)
|
||||||
{
|
{
|
||||||
|
int status, level;
|
||||||
u16 profile_id;
|
u16 profile_id;
|
||||||
int status;
|
|
||||||
|
status = be_cmd_get_cntl_attributes(adapter);
|
||||||
|
if (status)
|
||||||
|
return status;
|
||||||
|
|
||||||
status = be_cmd_query_fw_cfg(adapter);
|
status = be_cmd_query_fw_cfg(adapter);
|
||||||
if (status)
|
if (status)
|
||||||
return status;
|
return status;
|
||||||
|
|
||||||
|
if (BEx_chip(adapter)) {
|
||||||
|
level = be_cmd_get_fw_log_level(adapter);
|
||||||
|
adapter->msg_enable =
|
||||||
|
level <= FW_LOG_LEVEL_DEFAULT ? NETIF_MSG_HW : 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
be_cmd_get_acpi_wol_cap(adapter);
|
||||||
|
|
||||||
be_cmd_query_port_name(adapter);
|
be_cmd_query_port_name(adapter);
|
||||||
|
|
||||||
if (be_physfn(adapter)) {
|
if (be_physfn(adapter)) {
|
||||||
|
@ -3967,8 +3979,6 @@ static int be_setup(struct be_adapter *adapter)
|
||||||
|
|
||||||
be_set_rx_mode(adapter->netdev);
|
be_set_rx_mode(adapter->netdev);
|
||||||
|
|
||||||
be_cmd_get_acpi_wol_cap(adapter);
|
|
||||||
|
|
||||||
status = be_cmd_set_flow_control(adapter, adapter->tx_fc,
|
status = be_cmd_set_flow_control(adapter, adapter->tx_fc,
|
||||||
adapter->rx_fc);
|
adapter->rx_fc);
|
||||||
if (status)
|
if (status)
|
||||||
|
@ -5179,24 +5189,6 @@ static void be_remove(struct pci_dev *pdev)
|
||||||
free_netdev(adapter->netdev);
|
free_netdev(adapter->netdev);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int be_get_initial_config(struct be_adapter *adapter)
|
|
||||||
{
|
|
||||||
int status, level;
|
|
||||||
|
|
||||||
status = be_cmd_get_cntl_attributes(adapter);
|
|
||||||
if (status)
|
|
||||||
return status;
|
|
||||||
|
|
||||||
if (BEx_chip(adapter)) {
|
|
||||||
level = be_cmd_get_fw_log_level(adapter);
|
|
||||||
adapter->msg_enable =
|
|
||||||
level <= FW_LOG_LEVEL_DEFAULT ? NETIF_MSG_HW : 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* If any VFs are already enabled don't FLR the PF */
|
/* If any VFs are already enabled don't FLR the PF */
|
||||||
static bool be_reset_required(struct be_adapter *adapter)
|
static bool be_reset_required(struct be_adapter *adapter)
|
||||||
{
|
{
|
||||||
|
@ -5333,10 +5325,6 @@ static int be_probe(struct pci_dev *pdev, const struct pci_device_id *pdev_id)
|
||||||
if (status)
|
if (status)
|
||||||
goto drv_cleanup;
|
goto drv_cleanup;
|
||||||
|
|
||||||
status = be_get_initial_config(adapter);
|
|
||||||
if (status)
|
|
||||||
goto drv_cleanup;
|
|
||||||
|
|
||||||
status = be_setup(adapter);
|
status = be_setup(adapter);
|
||||||
if (status)
|
if (status)
|
||||||
goto drv_cleanup;
|
goto drv_cleanup;
|
||||||
|
|
Loading…
Reference in New Issue