Skip to content

Commit

Permalink
net: dsa: reindent arguments of dsa_user_vlan_for_each()
Browse files Browse the repository at this point in the history
These got misaligned after commit 6ca8063 ("net: dsa: Use conduit
and user terms").

Signed-off-by: Vladimir Oltean <[email protected]>
Reviewed-by: Andrew Lunn <[email protected]>
Reviewed-by: Florian Fainelli <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
vladimiroltean authored and davem330 committed Feb 5, 2024
1 parent 1c7bbea commit 0cd216d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions net/dsa/user.c
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ static int dsa_user_sync_uc(struct net_device *dev,
return 0;

return dsa_user_vlan_for_each(dev, dsa_user_host_vlan_rx_filtering,
&ctx);
&ctx);
}

static int dsa_user_unsync_uc(struct net_device *dev,
Expand All @@ -230,7 +230,7 @@ static int dsa_user_unsync_uc(struct net_device *dev,
return 0;

return dsa_user_vlan_for_each(dev, dsa_user_host_vlan_rx_filtering,
&ctx);
&ctx);
}

static int dsa_user_sync_mc(struct net_device *dev,
Expand All @@ -250,7 +250,7 @@ static int dsa_user_sync_mc(struct net_device *dev,
return 0;

return dsa_user_vlan_for_each(dev, dsa_user_host_vlan_rx_filtering,
&ctx);
&ctx);
}

static int dsa_user_unsync_mc(struct net_device *dev,
Expand All @@ -270,7 +270,7 @@ static int dsa_user_unsync_mc(struct net_device *dev,
return 0;

return dsa_user_vlan_for_each(dev, dsa_user_host_vlan_rx_filtering,
&ctx);
&ctx);
}

void dsa_user_sync_ha(struct net_device *dev)
Expand Down

0 comments on commit 0cd216d

Please sign in to comment.