arcnet: cleanup sizeof parameter
authorDan Carpenter <dan.carpenter@oracle.com>
Fri, 19 Jul 2013 05:48:05 +0000 (08:48 +0300)
committerWilly Tarreau <w@1wt.eu>
Mon, 19 May 2014 05:53:48 +0000 (07:53 +0200)
[ Upstream commit 087d273caf4f7d3f2159256f255f1f432bc84a5b ]

This patch doesn't change the compiled code because ARC_HDR_SIZE is 4
and sizeof(int) is 4, but the intent was to use the header size and not
the sizeof the header size.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Willy Tarreau <w@1wt.eu>
drivers/net/arcnet/arcnet.c

index 75a57256090969e8cc61d9bf149d89fc4cb934eb..e29940d2b674c7fbc408248e4220b9107fd8dd9c 100644 (file)
@@ -1008,7 +1008,7 @@ static void arcnet_rx(struct net_device *dev, int bufnum)
 
        soft = &pkt.soft.rfc1201;
 
-       lp->hw.copy_from_card(dev, bufnum, 0, &pkt, sizeof(ARC_HDR_SIZE));
+       lp->hw.copy_from_card(dev, bufnum, 0, &pkt, ARC_HDR_SIZE);
        if (pkt.hard.offset[0]) {
                ofs = pkt.hard.offset[0];
                length = 256 - ofs;