skb = dev_alloc_skb(sizeof(struct ieee80211_authentication) + challengelen);
 
-       if (!skb) return NULL;
+       if (!skb)
+               return NULL;
 
        auth = (struct ieee80211_authentication *)
                skb_put(skb, sizeof(struct ieee80211_authentication));
 
        auth->header.frame_ctl = IEEE80211_STYPE_AUTH;
-       if (challengelen) auth->header.frame_ctl |= IEEE80211_FCTL_WEP;
+       if (challengelen)
+               auth->header.frame_ctl |= IEEE80211_FCTL_WEP;
 
        auth->header.duration_id = 0x013a; /* FIXME */
 
        int rate_len = ieee->current_network.rates_len+2;
        int rate_ex_len = ieee->current_network.rates_ex_len;
        int wpa_ie_len = ieee->wpa_ie_len;
-       if (rate_ex_len > 0) rate_ex_len += 2;
+       if (rate_ex_len > 0)
+               rate_ex_len += 2;
 
        if (ieee->current_network.capability & WLAN_CAPABILITY_IBSS)
                atim_len = 4;
 
        if (ieee->host_encrypt)
                crypt = ieee->crypt[ieee->tx_keyidx];
-       else crypt = NULL;
+       else
+               crypt = NULL;
 
        encrypt = (crypt && crypt->ops);
 
 
        assoc->status = 0;
        assoc->aid = cpu_to_le16(ieee->assoc_id);
-       if (ieee->assoc_id == 0x2007) ieee->assoc_id = 0;
-       else ieee->assoc_id++;
+       if (ieee->assoc_id == 0x2007)
+               ieee->assoc_id = 0;
+       else
+               ieee->assoc_id++;
 
        tag = (u8*) skb_put(skb, rate_len);
 
                tag++; /* point to the next tag */
        }
 
-       if (ssidlen == 0) return 1;
+       if (ssidlen == 0)
+               return 1;
+
+       if (!ssid)
+                return 1; /* ssid not found in tagged param */
 
-       if (!ssid) return 1; /* ssid not found in tagged param */
        return (!strncmp(ssid, ieee->current_network.ssid, ssidlen));
 
 }
        struct ieee80211_hdr_3addr  *header;
 
        spin_lock_irqsave(&ieee->lock, flags);
-       if (!ieee->queue_stop) goto exit;
+       if (!ieee->queue_stop)
+               goto exit;
 
        ieee->queue_stop = 0;