Staging: et131x: config is already zeroed
Adapter was cleared by netdev allocation so any zero defaults do not need writing. Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
9483146369
commit
8d0e4fd405
@ -101,58 +101,30 @@ extern dbg_info_t *et131x_dbginfo;
|
|||||||
#endif /* CONFIG_ET131X_DEBUG */
|
#endif /* CONFIG_ET131X_DEBUG */
|
||||||
|
|
||||||
/* Defines for Parameter Default/Min/Max vaules */
|
/* Defines for Parameter Default/Min/Max vaules */
|
||||||
#define PARM_SPEED_DUPLEX_DEF 0
|
|
||||||
#define PARM_SPEED_DUPLEX_MIN 0
|
#define PARM_SPEED_DUPLEX_MIN 0
|
||||||
#define PARM_SPEED_DUPLEX_MAX 5
|
#define PARM_SPEED_DUPLEX_MAX 5
|
||||||
|
|
||||||
#define PARM_FLOW_CTL_DEF 0
|
|
||||||
#define PARM_FLOW_CTL_MIN 0
|
|
||||||
#define PARM_FLOW_CTL_MAX 3
|
|
||||||
|
|
||||||
#define PARM_JUMBO_PKT_DEF 1514
|
|
||||||
#define PARM_JUMBO_PKT_MIN 1514
|
|
||||||
#define PARM_JUMBO_PKT_MAX 9216
|
|
||||||
|
|
||||||
#define PARM_PHY_COMA_DEF 0
|
|
||||||
#define PARM_PHY_COMA_MIN 0
|
|
||||||
#define PARM_PHY_COMA_MAX 1
|
|
||||||
|
|
||||||
#define PARM_SC_GAIN_DEF 7
|
|
||||||
#define PARM_SC_GAIN_MIN 0
|
|
||||||
#define PARM_SC_GAIN_MAX 7
|
|
||||||
|
|
||||||
#define PARM_PM_WOL_DEF 0
|
|
||||||
#define PARM_PM_WOL_MIN 0
|
|
||||||
#define PARM_PM_WOL_MAX 1
|
|
||||||
|
|
||||||
#define PARM_NMI_DISABLE_DEF 0
|
|
||||||
#define PARM_NMI_DISABLE_MIN 0
|
|
||||||
#define PARM_NMI_DISABLE_MAX 2
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* Module parameter for disabling NMI
|
/* Module parameter for disabling NMI
|
||||||
* et131x_speed_set :
|
|
||||||
* Set Link speed and dublex manually (0-5) [0]
|
|
||||||
* 1 : 10Mb Half-Duplex
|
|
||||||
* 2 : 10Mb Full-Duplex
|
|
||||||
* 3 : 100Mb Half-Duplex
|
|
||||||
* 4 : 100Mb Full-Duplex
|
|
||||||
* 5 : 1000Mb Full-Duplex
|
|
||||||
* 0 : Auto Speed Auto Dublex // default
|
|
||||||
*/
|
|
||||||
static u32 et131x_nmi_disable = PARM_NMI_DISABLE_DEF;
|
|
||||||
module_param(et131x_nmi_disable, uint, 0);
|
|
||||||
MODULE_PARM_DESC(et131x_nmi_disable, "Disable NMI (0-2) [0]");
|
|
||||||
|
|
||||||
/* Module parameter for manual speed setting
|
|
||||||
* et131x_nmi_disable :
|
* et131x_nmi_disable :
|
||||||
* Disable NMI (0-2) [0]
|
* Disable NMI (0-2) [0]
|
||||||
* 0 :
|
* 0 :
|
||||||
* 1 :
|
* 1 :
|
||||||
* 2 :
|
* 2 :
|
||||||
*/
|
*/
|
||||||
static u32 et131x_speed_set = PARM_SPEED_DUPLEX_DEF;
|
static u32 et131x_nmi_disable; /* 0-2 */
|
||||||
|
module_param(et131x_nmi_disable, uint, 0);
|
||||||
|
MODULE_PARM_DESC(et131x_nmi_disable, "Disable NMI (0-2) [0]");
|
||||||
|
|
||||||
|
/* Module parameter for manual speed setting
|
||||||
|
* Set Link speed and dublex manually (0-5) [0]
|
||||||
|
* 1 : 10Mb Half-Duplex
|
||||||
|
* 2 : 10Mb Full-Duplex
|
||||||
|
* 3 : 100Mb Half-Duplex
|
||||||
|
* 4 : 100Mb Full-Duplex
|
||||||
|
* 5 : 1000Mb Full-Duplex
|
||||||
|
* 0 : Auto Speed Auto Duplex // default
|
||||||
|
*/
|
||||||
|
static u32 et131x_speed_set;
|
||||||
module_param(et131x_speed_set, uint, 0);
|
module_param(et131x_speed_set, uint, 0);
|
||||||
MODULE_PARM_DESC(et131x_speed_set,
|
MODULE_PARM_DESC(et131x_speed_set,
|
||||||
"Set Link speed and dublex manually (0-5) [0] \n 1 : 10Mb Half-Duplex \n 2 : 10Mb Full-Duplex \n 3 : 100Mb Half-Duplex \n 4 : 100Mb Full-Duplex \n 5 : 1000Mb Full-Duplex \n 0 : Auto Speed Auto Dublex");
|
"Set Link speed and dublex manually (0-5) [0] \n 1 : 10Mb Half-Duplex \n 2 : 10Mb Full-Duplex \n 3 : 100Mb Half-Duplex \n 4 : 100Mb Full-Duplex \n 5 : 1000Mb Full-Duplex \n 0 : Auto Speed Auto Dublex");
|
||||||
@ -175,33 +147,22 @@ void et131x_config_parse(struct et131x_adapter *etdev)
|
|||||||
|
|
||||||
DBG_ENTER(et131x_dbginfo);
|
DBG_ENTER(et131x_dbginfo);
|
||||||
|
|
||||||
etdev->SpeedDuplex = et131x_speed_set;
|
|
||||||
|
|
||||||
if (et131x_speed_set < PARM_SPEED_DUPLEX_MIN ||
|
if (et131x_speed_set < PARM_SPEED_DUPLEX_MIN ||
|
||||||
et131x_speed_set > PARM_SPEED_DUPLEX_MAX) {
|
et131x_speed_set > PARM_SPEED_DUPLEX_MAX) {
|
||||||
dev_warn(&etdev->pdev->dev, "invalid speed setting ignored.\n");
|
dev_warn(&etdev->pdev->dev, "invalid speed setting ignored.\n");
|
||||||
et131x_speed_set = PARM_SPEED_DUPLEX_DEF;
|
et131x_speed_set = 0;
|
||||||
}
|
}
|
||||||
else if (et131x_speed_set != PARM_SPEED_DUPLEX_DEF)
|
else if (et131x_speed_set)
|
||||||
DBG_VERBOSE(et131x_dbginfo, "Speed set manually to : %d \n",
|
DBG_VERBOSE(et131x_dbginfo, "Speed set manually to : %d \n",
|
||||||
et131x_speed_set);
|
et131x_speed_set);
|
||||||
|
|
||||||
/* etdev->SpeedDuplex = PARM_SPEED_DUPLEX_DEF; */
|
etdev->SpeedDuplex = et131x_speed_set;
|
||||||
|
etdev->RegistryJumboPacket = 1514; /* 1514-9216 */
|
||||||
|
|
||||||
etdev->RegistryFlowControl = PARM_FLOW_CTL_DEF;
|
etdev->RegistryNMIDisable = et131x_nmi_disable;
|
||||||
etdev->RegistryJumboPacket = PARM_JUMBO_PKT_DEF;
|
|
||||||
etdev->RegistryPhyComa = PARM_PHY_COMA_DEF;
|
|
||||||
|
|
||||||
if (et131x_nmi_disable != PARM_NMI_DISABLE_DEF)
|
|
||||||
etdev->RegistryNMIDisable = et131x_nmi_disable;
|
|
||||||
else
|
|
||||||
etdev->RegistryNMIDisable = PARM_NMI_DISABLE_DEF;
|
|
||||||
|
|
||||||
etdev->RegistryPhyLoopbk = 0; /* 0 off 1 on */
|
|
||||||
|
|
||||||
/* Set the MAC address to a default */
|
/* Set the MAC address to a default */
|
||||||
memcpy(etdev->CurrentAddress, default_mac, ETH_ALEN);
|
memcpy(etdev->CurrentAddress, default_mac, ETH_ALEN);
|
||||||
etdev->bOverrideAddress = false;
|
|
||||||
|
|
||||||
/* Decode SpeedDuplex
|
/* Decode SpeedDuplex
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user