aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/qlcnic/qlcnic.h
diff options
context:
space:
mode:
authorAnirban Chakraborty <anirban.chakraborty@qlogic.com>2010-07-09 09:14:58 -0400
committerDavid S. Miller <davem@davemloft.net>2010-07-09 20:41:57 -0400
commitac8d0c4feb5577a830bbf1d9a3bb5b1d30298e2c (patch)
treed564fcfee851d9c96e754afa9dc7093f869dd7a7 /drivers/net/qlcnic/qlcnic.h
parentd77535162e736c47978d5c01469c56e1781dc91b (diff)
qlcnic: Check FW capability for TSO
Driver checks TSO capability from FW before enabling it. Signed-off-by: Anirban Chakraborty <anirban.chakraborty@qlogic.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/qlcnic/qlcnic.h')
-rw-r--r--drivers/net/qlcnic/qlcnic.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/net/qlcnic/qlcnic.h b/drivers/net/qlcnic/qlcnic.h
index 60ea7cb3308f..02a50e60166d 100644
--- a/drivers/net/qlcnic/qlcnic.h
+++ b/drivers/net/qlcnic/qlcnic.h
@@ -821,9 +821,10 @@ struct qlcnic_nic_intr_coalesce {
821#define QLCNIC_LRO_REQUEST_CLEANUP 4 821#define QLCNIC_LRO_REQUEST_CLEANUP 4
822 822
823/* Capabilites received */ 823/* Capabilites received */
824#define QLCNIC_FW_CAPABILITY_BDG (1 << 8) 824#define QLCNIC_FW_CAPABILITY_TSO BIT_1
825#define QLCNIC_FW_CAPABILITY_FVLANTX (1 << 9) 825#define QLCNIC_FW_CAPABILITY_BDG BIT_8
826#define QLCNIC_FW_CAPABILITY_HW_LRO (1 << 10) 826#define QLCNIC_FW_CAPABILITY_FVLANTX BIT_9
827#define QLCNIC_FW_CAPABILITY_HW_LRO BIT_10
827 828
828/* module types */ 829/* module types */
829#define LINKEVENT_MODULE_NOT_PRESENT 1 830#define LINKEVENT_MODULE_NOT_PRESENT 1