diff options
author | Amit Kumar Salecha <amit.salecha@qlogic.com> | 2010-02-01 00:24:55 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-02-02 18:55:44 -0500 |
commit | 02420be6fc5fc63526aca43b5bfc571547a1c926 (patch) | |
tree | 988de3be2676910116b84e3e533061673ce965b7 /drivers | |
parent | 6a902881cc6993f136906559ca04b6a4c9e260fc (diff) |
qlcnic: add ethernet identifier in board info
Added missing identifier that distinguishes between
FCOE/ISCSI/ETHERNET functions.
Signed-off-by: Rajesh K Borundia <rajesh.borundia@qlogic.com>
Signed-off-by: Amit Kumar Salecha <amit.salecha@qlogic.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/qlcnic/qlcnic.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/drivers/net/qlcnic/qlcnic.h b/drivers/net/qlcnic/qlcnic.h index abec46846539..9662a37bfc57 100644 --- a/drivers/net/qlcnic/qlcnic.h +++ b/drivers/net/qlcnic/qlcnic.h | |||
@@ -1068,7 +1068,7 @@ int qlcnic_reset_context(struct qlcnic_adapter *); | |||
1068 | * QLOGIC Board information | 1068 | * QLOGIC Board information |
1069 | */ | 1069 | */ |
1070 | 1070 | ||
1071 | #define QLCNIC_MAX_BOARD_NAME_LEN 64 | 1071 | #define QLCNIC_MAX_BOARD_NAME_LEN 100 |
1072 | struct qlcnic_brdinfo { | 1072 | struct qlcnic_brdinfo { |
1073 | unsigned short vendor; | 1073 | unsigned short vendor; |
1074 | unsigned short device; | 1074 | unsigned short device; |
@@ -1078,8 +1078,12 @@ struct qlcnic_brdinfo { | |||
1078 | }; | 1078 | }; |
1079 | 1079 | ||
1080 | static const struct qlcnic_brdinfo qlcnic_boards[] = { | 1080 | static const struct qlcnic_brdinfo qlcnic_boards[] = { |
1081 | {0x1077, 0x8020, 0x1077, 0x203, "8200 Series Single Port 10GbE CNA"}, | 1081 | {0x1077, 0x8020, 0x1077, 0x203, |
1082 | {0x1077, 0x8020, 0x1077, 0x207, "8200 Series Dual Port 10GbE CNA"}, | 1082 | "8200 Series Single Port 10GbE Converged Network Adapter \ |
1083 | (TCP/IP Networking)"}, | ||
1084 | {0x1077, 0x8020, 0x1077, 0x207, | ||
1085 | "8200 Series Dual Port 10GbE Converged Network Adapter \ | ||
1086 | (TCP/IP Networking)"}, | ||
1083 | {0x1077, 0x8020, 0x1077, 0x20b, | 1087 | {0x1077, 0x8020, 0x1077, 0x20b, |
1084 | "3200 Series Dual Port 10Gb Intelligent Ethernet Adapter"}, | 1088 | "3200 Series Dual Port 10Gb Intelligent Ethernet Adapter"}, |
1085 | {0x1077, 0x8020, 0x1077, 0x20c, | 1089 | {0x1077, 0x8020, 0x1077, 0x20c, |