diff options
author | Stephen Hemminger <shemminger@osdl.org> | 2006-12-01 19:36:16 -0500 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2006-12-02 00:24:49 -0500 |
commit | f1d3d38af75789f1b82969b83b69cab540609789 (patch) | |
tree | 47d31e8a55fb65cf33797197b92a332630cfc3ef /drivers/net/chelsio/gmac.h | |
parent | 415294ecbb32ddbd0a7a2b7bae0b60fedfa09cc4 (diff) |
[PATCH] chelsio: add support for other 10G boards
Add support for other versions of the 10G Chelsio boards.
This is basically a port of the vendor driver with the
TOE features removed.
Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/chelsio/gmac.h')
-rw-r--r-- | drivers/net/chelsio/gmac.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/net/chelsio/gmac.h b/drivers/net/chelsio/gmac.h index 746b0eeea964..a2b8ad9b5535 100644 --- a/drivers/net/chelsio/gmac.h +++ b/drivers/net/chelsio/gmac.h | |||
@@ -62,6 +62,8 @@ struct cmac_statistics { | |||
62 | u64 TxInternalMACXmitError; | 62 | u64 TxInternalMACXmitError; |
63 | u64 TxFramesWithExcessiveDeferral; | 63 | u64 TxFramesWithExcessiveDeferral; |
64 | u64 TxFCSErrors; | 64 | u64 TxFCSErrors; |
65 | u64 TxJumboFramesOK; | ||
66 | u64 TxJumboOctetsOK; | ||
65 | 67 | ||
66 | /* Receive */ | 68 | /* Receive */ |
67 | u64 RxOctetsOK; | 69 | u64 RxOctetsOK; |
@@ -81,6 +83,8 @@ struct cmac_statistics { | |||
81 | u64 RxInRangeLengthErrors; | 83 | u64 RxInRangeLengthErrors; |
82 | u64 RxOutOfRangeLengthField; | 84 | u64 RxOutOfRangeLengthField; |
83 | u64 RxFrameTooLongErrors; | 85 | u64 RxFrameTooLongErrors; |
86 | u64 RxJumboFramesOK; | ||
87 | u64 RxJumboOctetsOK; | ||
84 | }; | 88 | }; |
85 | 89 | ||
86 | struct cmac_ops { | 90 | struct cmac_ops { |
@@ -128,6 +132,7 @@ struct gmac { | |||
128 | extern struct gmac t1_pm3393_ops; | 132 | extern struct gmac t1_pm3393_ops; |
129 | extern struct gmac t1_chelsio_mac_ops; | 133 | extern struct gmac t1_chelsio_mac_ops; |
130 | extern struct gmac t1_vsc7321_ops; | 134 | extern struct gmac t1_vsc7321_ops; |
135 | extern struct gmac t1_vsc7326_ops; | ||
131 | extern struct gmac t1_ixf1010_ops; | 136 | extern struct gmac t1_ixf1010_ops; |
132 | extern struct gmac t1_dummy_mac_ops; | 137 | extern struct gmac t1_dummy_mac_ops; |
133 | 138 | ||