net: mscc: make sparse happy
authorAntoine Tenart <antoine.tenart@bootlin.com>
Fri, 22 Jun 2018 09:50:52 +0000 (11:50 +0200)
committerDavid S. Miller <davem@davemloft.net>
Sat, 23 Jun 2018 01:42:02 +0000 (10:42 +0900)
This patch fixes a sparse warning about using an incorrect type in
argument 2 of ocelot_write_rix(), as an u32 was expected but a __be32
was given. The conversion to u32 is forced, which is safe as the value
will be written as-is in the hardware without any modification.

Fixes: 08d02364b12f ("net: mscc: fix the injection header")
Signed-off-by: Antoine Tenart <antoine.tenart@bootlin.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mscc/ocelot.c

index 52c57e0ff6170f3b12427a12afb2e8a93fe42fbb..776a8a9be8e3551311f5a99ba0285c4c698cf10a 100644 (file)
@@ -374,7 +374,8 @@ static int ocelot_port_xmit(struct sk_buff *skb, struct net_device *dev)
        ocelot_gen_ifh(ifh, &info);
 
        for (i = 0; i < IFH_LEN; i++)
-               ocelot_write_rix(ocelot, cpu_to_be32(ifh[i]), QS_INJ_WR, grp);
+               ocelot_write_rix(ocelot, (__force u32)cpu_to_be32(ifh[i]),
+                                QS_INJ_WR, grp);
 
        count = (skb->len + 3) / 4;
        last = skb->len % 4;