aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/marvell/skge.c
diff options
context:
space:
mode:
authorstephen hemminger <stephen@networkplumber.org>2017-08-15 10:29:18 -0700
committerDavid S. Miller <davem@davemloft.net>2017-08-16 11:01:57 -0700
commit9d2ee98dafd439a768f4cef3757bcce328b86386 (patch)
treeb72161c3eef87f82bc6dd7257d5075adf067a111 /drivers/net/ethernet/marvell/skge.c
parentvirtio: put paren around sizeof (diff)
downloadlinux-dev-9d2ee98dafd439a768f4cef3757bcce328b86386.tar.xz
linux-dev-9d2ee98dafd439a768f4cef3757bcce328b86386.zip
skge: add paren around sizeof arg
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/marvell/skge.c')
-rw-r--r--drivers/net/ethernet/marvell/skge.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/marvell/skge.c b/drivers/net/ethernet/marvell/skge.c
index 5d7d94de4e00..8a835e82256a 100644
--- a/drivers/net/ethernet/marvell/skge.c
+++ b/drivers/net/ethernet/marvell/skge.c
@@ -3516,7 +3516,7 @@ static const char *skge_board_name(const struct skge_hw *hw)
if (skge_chips[i].id == hw->chip_id)
return skge_chips[i].name;
- snprintf(buf, sizeof buf, "chipid 0x%x", hw->chip_id);
+ snprintf(buf, sizeof(buf), "chipid 0x%x", hw->chip_id);
return buf;
}