]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: ks7010: fix checkpatch MULTILINE_DEREFERENCE
authorTobin C. Harding <me@tobin.cc>
Mon, 10 Apr 2017 03:15:58 +0000 (13:15 +1000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 11 Apr 2017 14:14:33 +0000 (16:14 +0200)
Checkpatch emits WARNING: Avoid multiple line dereference.

Fix up layout of function call, move dereference to single line.

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 154764a42ca5b77252a72700cccd5e01eacefe5f..47adc779565f03b7d23b5b9937ec7280d8c78d30 100644 (file)
@@ -849,8 +849,7 @@ void hostif_scan_indication(struct ks_wlan_private *priv)
                DPRINTK(4, " scan_ind_count=%d :: aplist.size=%d\n",
                        priv->scan_ind_count, priv->aplist.size);
                get_ap_information(priv, (struct ap_info_t *)(priv->rxp),
-                                  &(priv->aplist.
-                                    ap[priv->scan_ind_count - 1]));
+                                  &(priv->aplist.ap[priv->scan_ind_count - 1]));
                priv->aplist.size = priv->scan_ind_count;
        } else {
                DPRINTK(4, " count over :: scan_ind_count=%d\n",
@@ -1224,9 +1223,12 @@ int hostif_data_request(struct ks_wlan_private *priv, struct sk_buff *skb)
                        pp->auth_type = cpu_to_le16((uint16_t)TYPE_AUTH);       /* no encryption */
                } else {
                        if (priv->wpa.pairwise_suite == IW_AUTH_CIPHER_TKIP) {
-                               MichaelMICFunction(&michael_mic, (uint8_t *)priv->wpa.key[0].tx_mic_key, (uint8_t *)&pp->data[0], (int)skb_len, (uint8_t)0,     /* priority */
-                                                  (uint8_t *)michael_mic.
-                                                  Result);
+                               MichaelMICFunction(&michael_mic,
+                                                  (uint8_t *)priv->wpa.key[0].tx_mic_key,
+                                                  (uint8_t *)&pp->data[0],
+                                                  (int)skb_len,
+                                                  (uint8_t)0,  /* priority */
+                                                  (uint8_t *)michael_mic.Result);
                                memcpy(p, michael_mic.Result, 8);
                                length += 8;
                                skb_len += 8;