]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: ks7010: reduce level of indentation
authorTobin C. Harding <me@tobin.cc>
Mon, 13 Mar 2017 06:38:17 +0000 (17:38 +1100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 13 Mar 2017 22:20:06 +0000 (06:20 +0800)
Code is deeply nested. One level of indentation may be removed by
inverting if statement conditional.

Invert conditional, return if new conditional evaluates to true.

Signed-off-by: Tobin C. Harding <me@tobin.cc>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ks7010/ks_hostif.c

index ed9969c6f59ae8356f7c51750cc5ae1fcf1a9208..54ff06d1e799141592289149cba558ccbd3621ba 100644 (file)
@@ -323,77 +323,79 @@ int hostif_data_indication_wpa(struct ks_wlan_private *priv,
        eth_hdr = (struct ether_hdr *)(priv->rxp);
        eth_proto = ntohs(eth_hdr->h_proto);
 
-       if (memcmp(&eth_hdr->h_source[0], &priv->eth_addr[0], ETH_ALEN)) {      /* source address check */
-               if (eth_hdr->h_dest_snap != eth_hdr->h_source_snap) {
-                       DPRINTK(1, "invalid data format\n");
-                       priv->nstats.rx_errors++;
-                       return -EINVAL;
+       /* source address check */
+       if (!memcmp(&eth_hdr->h_source[0], &priv->eth_addr[0], ETH_ALEN))
+               return 0;
+
+       if (eth_hdr->h_dest_snap != eth_hdr->h_source_snap) {
+               DPRINTK(1, "invalid data format\n");
+               priv->nstats.rx_errors++;
+               return -EINVAL;
+       }
+       if (((auth_type == TYPE_PMK1
+                               && priv->wpa.pairwise_suite ==
+                               IW_AUTH_CIPHER_TKIP) || (auth_type == TYPE_GMK1
+                                                       && priv->wpa.
+                                                       group_suite ==
+                                                       IW_AUTH_CIPHER_TKIP)
+                       || (auth_type == TYPE_GMK2
+                               && priv->wpa.group_suite ==
+                               IW_AUTH_CIPHER_TKIP))
+               && priv->wpa.key[auth_type - 1].key_len) {
+               DPRINTK(4, "TKIP: protocol=%04X: size=%u\n",
+                       eth_proto, priv->rx_size);
+               /* MIC save */
+               memcpy(&RecvMIC[0],
+                       (priv->rxp) + ((priv->rx_size) - 8), 8);
+               priv->rx_size = priv->rx_size - 8;
+               if (auth_type > 0 && auth_type < 4) {   /* auth_type check */
+                       MichaelMICFunction(&michel_mic, (uint8_t *)priv->wpa.key[auth_type - 1].rx_mic_key, (uint8_t *)priv->rxp, (int)priv->rx_size, (uint8_t)0,       /* priority */
+                                       (uint8_t *)michel_mic.Result);
                }
-               if (((auth_type == TYPE_PMK1
-                                       && priv->wpa.pairwise_suite ==
-                                       IW_AUTH_CIPHER_TKIP) || (auth_type == TYPE_GMK1
-                                                               && priv->wpa.
-                                                               group_suite ==
-                                                               IW_AUTH_CIPHER_TKIP)
-                               || (auth_type == TYPE_GMK2
-                                       && priv->wpa.group_suite ==
-                                       IW_AUTH_CIPHER_TKIP))
-                       && priv->wpa.key[auth_type - 1].key_len) {
-                       DPRINTK(4, "TKIP: protocol=%04X: size=%u\n",
-                               eth_proto, priv->rx_size);
-                       /* MIC save */
-                       memcpy(&RecvMIC[0],
-                               (priv->rxp) + ((priv->rx_size) - 8), 8);
-                       priv->rx_size = priv->rx_size - 8;
-                       if (auth_type > 0 && auth_type < 4) {   /* auth_type check */
-                               MichaelMICFunction(&michel_mic, (uint8_t *)priv->wpa.key[auth_type - 1].rx_mic_key, (uint8_t *)priv->rxp, (int)priv->rx_size, (uint8_t)0,       /* priority */
-                                               (uint8_t *)michel_mic.Result);
+               if (memcmp(michel_mic.Result, RecvMIC, 8)) {
+                       now = jiffies;
+                       mic_failure = &priv->wpa.mic_failure;
+                       /* MIC FAILURE */
+                       if (mic_failure->last_failure_time &&
+                               (now -
+                                       mic_failure->last_failure_time) /
+                               HZ >= 60) {
+                               mic_failure->failure = 0;
                        }
-                       if (memcmp(michel_mic.Result, RecvMIC, 8)) {
-                               now = jiffies;
-                               mic_failure = &priv->wpa.mic_failure;
-                               /* MIC FAILURE */
-                               if (mic_failure->last_failure_time &&
-                                       (now -
-                                               mic_failure->last_failure_time) /
-                                       HZ >= 60) {
-                                       mic_failure->failure = 0;
-                               }
-                               DPRINTK(4, "MIC FAILURE\n");
-                               if (mic_failure->failure == 0) {
-                                       mic_failure->failure = 1;
-                                       mic_failure->counter = 0;
-                               } else if (mic_failure->failure == 1) {
-                                       mic_failure->failure = 2;
+                       DPRINTK(4, "MIC FAILURE\n");
+                       if (mic_failure->failure == 0) {
+                               mic_failure->failure = 1;
+                               mic_failure->counter = 0;
+                       } else if (mic_failure->failure == 1) {
+                               mic_failure->failure = 2;
+                               mic_failure->counter =
+                                       (uint16_t)((now -
+                                                       mic_failure->
+                                                       last_failure_time)
+                                               / HZ);
+                               if (!mic_failure->counter)      /* mic_failure counter value range 1-60 */
                                        mic_failure->counter =
-                                               (uint16_t)((now -
-                                                               mic_failure->
-                                                               last_failure_time)
-                                                       / HZ);
-                                       if (!mic_failure->counter)      /* mic_failure counter value range 1-60 */
-                                               mic_failure->counter =
-                                                       1;
-                               }
-                               priv->wpa.mic_failure.
-                                       last_failure_time = now;
-                               /*  needed parameters: count, keyid, key type, TSC */
-                               sprintf(buf,
-                                       "MLME-MICHAELMICFAILURE.indication(keyid=%d %scast addr="
-                                       "%pM)",
-                                       auth_type - 1,
-                                       eth_hdr->
-                                       h_dest[0] & 0x01 ? "broad" :
-                                       "uni", eth_hdr->h_source);
-                               memset(&wrqu, 0, sizeof(wrqu));
-                               wrqu.data.length = strlen(buf);
-                               DPRINTK(4,
-                                       "IWEVENT:MICHAELMICFAILURE\n");
-                               wireless_send_event(priv->net_dev,
-                                               IWEVCUSTOM, &wrqu,
-                                               buf);
-                               return -EINVAL;
-
+                                               1;
                        }
+                       priv->wpa.mic_failure.
+                               last_failure_time = now;
+                       /*  needed parameters: count, keyid, key type, TSC */
+                       sprintf(buf,
+                               "MLME-MICHAELMICFAILURE.indication(keyid=%d %scast addr="
+                               "%pM)",
+                               auth_type - 1,
+                               eth_hdr->
+                               h_dest[0] & 0x01 ? "broad" :
+                               "uni", eth_hdr->h_source);
+                       memset(&wrqu, 0, sizeof(wrqu));
+                       wrqu.data.length = strlen(buf);
+                       DPRINTK(4,
+                               "IWEVENT:MICHAELMICFAILURE\n");
+                       wireless_send_event(priv->net_dev,
+                                       IWEVCUSTOM, &wrqu,
+                                       buf);
+                       return -EINVAL;
+
                }
        }
        return 0;