Skip to content

Commit

Permalink
net: mscc: ocelot: strengthen type of "int i" in ocelot_stats.c
Browse files Browse the repository at this point in the history
The "int i" used to index the struct ocelot_stat_layout array actually
has a specific type: enum ocelot_stat. Use it, so that the WARN()
comment from ocelot_prepare_stats_regions() makes more sense.

Signed-off-by: Vladimir Oltean <[email protected]>
Reviewed-by: Jacob Keller <[email protected]>
Signed-off-by: Jakub Kicinski <[email protected]>
  • Loading branch information
vladimiroltean authored and kuba-moo committed Apr 14, 2023
1 parent eae0b9d commit 6663c01
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions drivers/net/ethernet/mscc/ocelot_stats.c
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ static void ocelot_check_stats_work(struct work_struct *work)
void ocelot_get_strings(struct ocelot *ocelot, int port, u32 sset, u8 *data)
{
const struct ocelot_stat_layout *layout;
int i;
enum ocelot_stat i;

if (sset != ETH_SS_STATS)
return;
Expand Down Expand Up @@ -442,7 +442,8 @@ static void ocelot_port_stats_run(struct ocelot *ocelot, int port, void *priv,
int ocelot_get_sset_count(struct ocelot *ocelot, int port, int sset)
{
const struct ocelot_stat_layout *layout;
int i, num_stats = 0;
enum ocelot_stat i;
int num_stats = 0;

if (sset != ETH_SS_STATS)
return -EOPNOTSUPP;
Expand All @@ -461,8 +462,8 @@ static void ocelot_port_ethtool_stats_cb(struct ocelot *ocelot, int port,
void *priv)
{
const struct ocelot_stat_layout *layout;
enum ocelot_stat i;
u64 *data = priv;
int i;

layout = ocelot_get_stats_layout(ocelot);

Expand Down Expand Up @@ -890,7 +891,7 @@ static int ocelot_prepare_stats_regions(struct ocelot *ocelot)
struct ocelot_stats_region *region = NULL;
const struct ocelot_stat_layout *layout;
enum ocelot_reg last = 0;
int i;
enum ocelot_stat i;

INIT_LIST_HEAD(&ocelot->stats_regions);

Expand Down

0 comments on commit 6663c01

Please sign in to comment.