aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorGanesh Venkatesan <ganesh.venkatesan@intel.com>2005-01-08 02:27:32 -0500
committerJeff Garzik <jgarzik@pobox.com>2005-01-08 02:27:32 -0500
commit2688a0d5d1abd8c17fab648488f4d0776c0e64d2 (patch)
treee6353727ea961b9c79d9ea405debcb58531f8c98 /drivers
parent2bcaab80dc9ca644f627cf7adc49bf8996661c96 (diff)
downloadhistory-2688a0d5d1abd8c17fab648488f4d0776c0e64d2.tar.gz
[PATCH] ixgb: Limit Rx Address Filter Array entries to 3
Signed-off-by: Ganesh Venkatesan <ganesh.venkatesan@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/ixgb/ixgb_hw.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ixgb/ixgb_hw.h b/drivers/net/ixgb/ixgb_hw.h
index fad5032d239b7d..18f1efcb90c5f4 100644
--- a/drivers/net/ixgb/ixgb_hw.h
+++ b/drivers/net/ixgb/ixgb_hw.h
@@ -616,9 +616,9 @@ struct ixgb_context_desc {
#define IXGB_CONTEXT_DESC_STATUS_DD 0x01
/* Filters */
-#define IXGB_RAR_ENTRIES 16 /* Number of entries in Rx Address array */
#define IXGB_MC_TBL_SIZE 128 /* Multicast Filter Table (4096 bits) */
#define IXGB_VLAN_FILTER_TBL_SIZE 128 /* VLAN Filter Table (4096 bits) */
+#define IXGB_RAR_ENTRIES 3 /* Number of entries in Rx Address array */
#define IXGB_MEMORY_REGISTER_BASE_ADDRESS 0
#define ENET_HEADER_SIZE 14