net: qcom/emac: fix a sizeof() typo
authorDan Carpenter <dan.carpenter@oracle.com>
Mon, 13 Feb 2017 11:00:22 +0000 (14:00 +0300)
committerDavid S. Miller <davem@davemloft.net>
Tue, 14 Feb 2017 03:24:35 +0000 (22:24 -0500)
We had intended to say "sizeof(u32)" but the "u" is missing.
Fortunately, sizeof(32) is also 4, so the original code still works.

Fixes: c4e7beea2192 ("net: qcom/emac: add ethtool support for reading hardware registers")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Timur Tabi <timur@codeaurora.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/qualcomm/emac/emac-ethtool.c

index 0d9945f..bbe2463 100644 (file)
@@ -227,7 +227,7 @@ static void emac_get_regs(struct net_device *netdev,
 
 static int emac_get_regs_len(struct net_device *netdev)
 {
-       return EMAC_MAX_REG_SIZE * sizeof(32);
+       return EMAC_MAX_REG_SIZE * sizeof(u32);
 }
 
 static const struct ethtool_ops emac_ethtool_ops = {