qlge: bugfix: Tell hw to strip vlan header.
Signed-off-by: Ron Mercer <ron.mercer@qlogic.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
1e213303d8
commit
c9cf0a04a0
|
@ -3073,9 +3073,9 @@ static int ql_adapter_initialize(struct ql_adapter *qdev)
|
|||
mask = value << 16;
|
||||
ql_write32(qdev, SYS, mask | value);
|
||||
|
||||
/* Set the default queue. */
|
||||
value = NIC_RCV_CFG_DFQ;
|
||||
mask = NIC_RCV_CFG_DFQ_MASK;
|
||||
/* Set the default queue, and VLAN behavior. */
|
||||
value = NIC_RCV_CFG_DFQ | NIC_RCV_CFG_RV;
|
||||
mask = NIC_RCV_CFG_DFQ_MASK | (NIC_RCV_CFG_RV << 16);
|
||||
ql_write32(qdev, NIC_RCV_CFG, (mask | value));
|
||||
|
||||
/* Set the MPI interrupt to enabled. */
|
||||
|
|
Loading…
Reference in New Issue