mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
net: ethtool: fix coding style
Add missing spaces around multiplication operator. Signed-off-by: Michał Mirosław <mirq-linux@rere.qmqm.pl> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
b721e25383
commit
09da71b121
1 changed files with 8 additions and 7 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue