[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1232517051.9701.25.camel@brick>
Date: Tue, 20 Jan 2009 21:50:50 -0800
From: Harvey Harrison <harvey.harrison@...il.com>
To: Eilon Greenstein <eilong@...adcom.com>
Cc: linux-netdev <netdev@...r.kernel.org>
Subject: [PATCH 7/9] bnx2x: annotate more fields in struct eth_tx_bd_flags
Signed-off-by: Harvey Harrison <harvey.harrison@...il.com>
---
drivers/net/bnx2x_hsi.h | 6 +++---
drivers/net/bnx2x_main.c | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/net/bnx2x_hsi.h b/drivers/net/bnx2x_hsi.h
index ba066b7..33d6d5d 100644
--- a/drivers/net/bnx2x_hsi.h
+++ b/drivers/net/bnx2x_hsi.h
@@ -1910,9 +1910,9 @@ struct eth_tx_bd_flags {
struct eth_tx_bd {
__le32 addr_lo;
__le32 addr_hi;
- u16 nbd;
- u16 nbytes;
- u16 vlan;
+ __le16 nbd;
+ __le16 nbytes;
+ __le16 vlan;
struct eth_tx_bd_flags bd_flags;
u8 general_data;
#define ETH_TX_BD_HDR_NBDS (0x3F<<0)
diff --git a/drivers/net/bnx2x_main.c b/drivers/net/bnx2x_main.c
index f37c8ff..3d0907b 100644
--- a/drivers/net/bnx2x_main.c
+++ b/drivers/net/bnx2x_main.c
@@ -9383,7 +9383,7 @@ static noinline u16 bnx2x_tx_split(struct bnx2x *bp,
d_tx_bd->addr_hi = cpu_to_le32(U64_HI(mapping));
d_tx_bd->addr_lo = cpu_to_le32(U64_LO(mapping));
d_tx_bd->nbytes = cpu_to_le16(old_len - hlen);
- d_tx_bd->vlan = 0;
+ d_tx_bd->vlan = cpu_to_le16(0);
/* this marks the BD as one that has no individual mapping
* the FW ignores this flag in a BD not marked start
*/
--
1.6.1.249.g455e5
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists