diff options
author | Amit Kumar Salecha <amit@netxen.com> | 2009-09-09 21:12:59 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-09-09 21:12:59 -0400 |
commit | 58f25468b5636c390ad2a58356b127c0055884b4 (patch) | |
tree | 5da1946a20912eb292760865227e2aa536f610fd /drivers | |
parent | 3db7675506ef7460bf6220545bfc69abb7dbceab (diff) |
netxen: fix tx descriptor structure
Fix the offset of vlan_TCI field in cmd_desc_type0.
Signed-off-by: Amit Kumar Salecha <amit@qlogic.com>
Signed-off-by: Dhananjay Phadke <dhananjay@netxen.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/netxen/netxen_nic.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/netxen/netxen_nic.h b/drivers/net/netxen/netxen_nic.h index 2a52479bcdf0..23718887d02c 100644 --- a/drivers/net/netxen/netxen_nic.h +++ b/drivers/net/netxen/netxen_nic.h | |||
@@ -348,9 +348,9 @@ struct cmd_desc_type0 { | |||
348 | 348 | ||
349 | __le64 addr_buffer4; | 349 | __le64 addr_buffer4; |
350 | 350 | ||
351 | __le16 vlan_TCI; | ||
352 | __le16 reserved; | ||
353 | __le32 reserved2; | 351 | __le32 reserved2; |
352 | __le16 reserved; | ||
353 | __le16 vlan_TCI; | ||
354 | 354 | ||
355 | } __attribute__ ((aligned(64))); | 355 | } __attribute__ ((aligned(64))); |
356 | 356 | ||