mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 14:40:12 -04:00
net: mv643xx: use ethtool_puts
Allows simplifying get_strings and avoids manual pointer manipulation. Signed-off-by: Rosen Penev <rosenp@gmail.com> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Reviewed-by: Kalesh AP <kalesh-anakkur.purayil@broadcom.com> Message-ID: <20241018200522.12506-1-rosenp@gmail.com> Signed-off-by: Andrew Lunn <andrew@lunn.ch>
This commit is contained in:
@@ -1698,13 +1698,9 @@ static void mv643xx_eth_get_strings(struct net_device *dev,
|
||||
{
|
||||
int i;
|
||||
|
||||
if (stringset == ETH_SS_STATS) {
|
||||
for (i = 0; i < ARRAY_SIZE(mv643xx_eth_stats); i++) {
|
||||
memcpy(data + i * ETH_GSTRING_LEN,
|
||||
mv643xx_eth_stats[i].stat_string,
|
||||
ETH_GSTRING_LEN);
|
||||
}
|
||||
}
|
||||
if (stringset == ETH_SS_STATS)
|
||||
for (i = 0; i < ARRAY_SIZE(mv643xx_eth_stats); i++)
|
||||
ethtool_puts(&data, mv643xx_eth_stats[i].stat_string);
|
||||
}
|
||||
|
||||
static void mv643xx_eth_get_ethtool_stats(struct net_device *dev,
|
||||
|
||||
Reference in New Issue
Block a user