mirror of
https://github.com/torvalds/linux.git
synced 2026-06-01 02:53:36 +02:00
net/mlx4_en: Use ethtool_puts to fill selftest strings
Use the ethtool_puts helper to print the selftest strings into the ethtool strings interface. Signed-off-by: Kamal Heib <kheib@redhat.com> Reviewed-by: Simon Horman <horms@kernel.org> Link: https://lore.kernel.org/r/20240617172329.239819-3-kheib@redhat.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
e52e010395
commit
4454929c34
|
|
@ -459,10 +459,10 @@ static void mlx4_en_get_strings(struct net_device *dev,
|
|||
switch (stringset) {
|
||||
case ETH_SS_TEST:
|
||||
for (i = 0; i < MLX4_EN_NUM_SELF_TEST - 2; i++)
|
||||
strcpy(data + i * ETH_GSTRING_LEN, mlx4_en_test_names[i]);
|
||||
ethtool_puts(&data, mlx4_en_test_names[i]);
|
||||
if (priv->mdev->dev->caps.flags & MLX4_DEV_CAP_FLAG_UC_LOOPBACK)
|
||||
for (; i < MLX4_EN_NUM_SELF_TEST; i++)
|
||||
strcpy(data + i * ETH_GSTRING_LEN, mlx4_en_test_names[i]);
|
||||
ethtool_puts(&data, mlx4_en_test_names[i]);
|
||||
break;
|
||||
|
||||
case ETH_SS_STATS:
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user