]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
bnx2x: Use correct FW constant for header padding
authorDmitry Kravkov <dmitry@broadcom.com>
Sun, 17 Oct 2010 23:09:30 +0000 (23:09 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 18 Oct 2010 13:51:58 +0000 (06:51 -0700)
the value of the constant is the same, but it's clearer to use original
constant provided by HSI

Signed-off-by: Dmitry Kravkov <dmitry@broadcom.com>
Signed-off-by: Eilon Greenstein <eilong@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/bnx2x/bnx2x_cmn.c
drivers/net/bnx2x/bnx2x_cmn.h

index afff58c52d4f8cd449bb8a0f8ce3ea77357f27cf..1966ceeefcd4980d1ff11b25e780348c7244cdda 100644 (file)
@@ -831,7 +831,7 @@ void bnx2x_init_rx_rings(struct bnx2x *bp)
        int i, j;
 
        bp->rx_buf_size = bp->dev->mtu + ETH_OVREHEAD + BNX2X_RX_ALIGN +
-               BNX2X_FW_IP_HDR_ALIGN_PAD;
+               IP_HEADER_ALIGNMENT_PADDING;
 
        DP(NETIF_MSG_IFUP,
           "mtu %d  rx_buf_size %d\n", bp->dev->mtu, bp->rx_buf_size);
index 7f52cec9bb99d82036fa1594c823c9026812443d..5bfe0ab1d2d4d71cf1f801149f40de07b5f9ffad 100644 (file)
@@ -1032,6 +1032,4 @@ static inline void storm_memset_cmng(struct bnx2x *bp,
 void bnx2x_acquire_phy_lock(struct bnx2x *bp);
 void bnx2x_release_phy_lock(struct bnx2x *bp);
 
-#define BNX2X_FW_IP_HDR_ALIGN_PAD      2 /* FW places hdr with this padding */
-
 #endif /* BNX2X_CMN_H */