Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 09da71b1 authored by Michał Mirosław's avatar Michał Mirosław Committed by David S. Miller
Browse files

net: ethtool: fix coding style



Add missing spaces around multiplication operator.

Signed-off-by: default avatarMichał Mirosław <mirq-linux@rere.qmqm.pl>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b721e253
Loading
Loading
Loading
Loading
+8 −7
Original line number Diff line number Diff line
@@ -93,7 +93,8 @@ static int ethtool_get_features(struct net_device *dev, void __user *useraddr)
		features[i].available = (u32)(dev->hw_features >> (32 * i));
		features[i].requested = (u32)(dev->wanted_features >> (32 * i));
		features[i].active = (u32)(dev->features >> (32 * i));
		features[i].never_changed = (u32)(NETIF_F_NEVER_CHANGE >> (32*i));
		features[i].never_changed =
			(u32)(NETIF_F_NEVER_CHANGE >> (32 * i));
	}

	sizeaddr = useraddr + offsetof(struct ethtool_gfeatures, size);