This commit groups some case statements because its behaviour is
just do nothing which is the same as the default. Clean 'break'
keyword in those which are affected.

Signed-off-by: Sergio Paracuellos <sergio.paracuel...@gmail.com>
---
 drivers/staging/ks7010/ks_hostif.c | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/drivers/staging/ks7010/ks_hostif.c 
b/drivers/staging/ks7010/ks_hostif.c
index 00e9fdf..b182530 100644
--- a/drivers/staging/ks7010/ks_hostif.c
+++ b/drivers/staging/ks7010/ks_hostif.c
@@ -621,8 +621,6 @@ void hostif_mib_set_confirm(struct ks_wlan_private *priv)
        case DOT11_RSN_CONFIG_AUTH_SUITE:
                hostif_sme_enqueue(priv, SME_RSN_AUTH_CONFIRM);
                break;
-       case DOT11_PMK_TSC:
-               break;
        case DOT11_GMK1_TSC:
                if (atomic_read(&priv->psstatus.snooze_guard))
                        atomic_set(&priv->psstatus.snooze_guard, 0);
@@ -631,15 +629,12 @@ void hostif_mib_set_confirm(struct ks_wlan_private *priv)
                if (atomic_read(&priv->psstatus.snooze_guard))
                        atomic_set(&priv->psstatus.snooze_guard, 0);
                break;
+       case DOT11_PMK_TSC:
        case LOCAL_PMK:
-               break;
        case LOCAL_GAIN:
-               break;
 #ifdef WPS
        case LOCAL_WPS_ENABLE:
-               break;
        case LOCAL_WPS_PROBE_REQ:
-               break;
 #endif /* WPS */
        case LOCAL_REGION:
        default:
-- 
2.7.4

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to