mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-09 06:43:09 +00:00
net: ethernet: slicoss: remove redundant increment of pointer data
The pointer data is being incremented but this change to the pointer is not used afterwards. The increment is redundant and can be removed. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Acked-by: Lino Sanfilippo <LinoSanfilippo@gmx.de> Link: https://lore.kernel.org/r/20230726164522.369206-1-colin.i.king@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
05191d8896
commit
3bdd85e2e3
@ -1520,10 +1520,8 @@ static void slic_get_ethtool_stats(struct net_device *dev,
|
||||
|
||||
static void slic_get_strings(struct net_device *dev, u32 stringset, u8 *data)
|
||||
{
|
||||
if (stringset == ETH_SS_STATS) {
|
||||
if (stringset == ETH_SS_STATS)
|
||||
memcpy(data, slic_stats_strings, sizeof(slic_stats_strings));
|
||||
data += sizeof(slic_stats_strings);
|
||||
}
|
||||
}
|
||||
|
||||
static void slic_get_drvinfo(struct net_device *dev,
|
||||
|
Loading…
Reference in New Issue
Block a user