lkml.org 
[lkml]   [2018]   [Mar]   [21]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
SubjectRE: [PATCH] staging: fsl-dpaa2: replace simple switch case by if statement
Date
From: > hariprasath.elango@gmail.com
> Sent: 21 March 2018 11:16
> From: HariPrasath Elango <hariprasath.elango@gmail.com>
>
> Replace a couple of simple switch cases by if condition

Why?
In principle extra 'case' might be needed in the future.

...
> diff --git a/drivers/staging/fsl-dpaa2/ethernet/dpaa2-ethtool.c b/drivers/staging/fsl-
> dpaa2/ethernet/dpaa2-ethtool.c
> index 070a3f2..fb517cb 100644
> --- a/drivers/staging/fsl-dpaa2/ethernet/dpaa2-ethtool.c
> +++ b/drivers/staging/fsl-dpaa2/ethernet/dpaa2-ethtool.c
> @@ -171,8 +171,7 @@ static void dpaa2_eth_get_strings(struct net_device *netdev, u32 stringset,
> u8 *p = data;
> int i;
>
> - switch (stringset) {
> - case ETH_SS_STATS:
> + if (stringset == ETH_SS_STATS) {
> for (i = 0; i < DPAA2_ETH_NUM_STATS; i++) {
> strlcpy(p, dpaa2_ethtool_stats[i], ETH_GSTRING_LEN);
> p += ETH_GSTRING_LEN;
> @@ -181,18 +180,16 @@ static void dpaa2_eth_get_strings(struct net_device *netdev, u32 stringset,
> strlcpy(p, dpaa2_ethtool_extras[i], ETH_GSTRING_LEN);
> p += ETH_GSTRING_LEN;
> }
> - break;
> }
> }
...

David

\
 
 \ /
  Last update: 2018-03-21 12:48    [W:0.273 / U:0.424 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site