return pbuf + len + 2;
 }
 
-/*----------------------------------------------------------------------------
-index: the information element id index, limit is the limit for search
------------------------------------------------------------------------------*/
+/*
+ * ----------------------------------------------------------------------------
+ * index: the information element id index, limit is the limit for search
+ * ----------------------------------------------------------------------------
+ */
 u8 *rtw_get_ie(u8 *pbuf, int index, uint *len, int limit)
 {
        int tmp, i;
 {
        unsigned int oui;
 
-       /* first 3 bytes in vendor specific information element are the IEEE
+       /*
+        * first 3 bytes in vendor specific information element are the IEEE
         * OUI of the vendor. The following byte is used a vendor specific
-        * sub-type. */
+        * sub-type.
+        */
        if (elen < 4) {
                if (show_errors) {
                        DBG_88E("short vendor specific information element ignored (len=%lu)\n",
        oui = RTW_GET_BE24(pos);
        switch (oui) {
        case OUI_MICROSOFT:
-               /* Microsoft/Wi-Fi information elements are further typed and
-                * subtyped */
+               /*
+                * Microsoft/Wi-Fi information elements are further typed and
+                * subtyped
+                */
                switch (pos[3]) {
                case 1:
-                       /* Microsoft OUI (00:50:F2) with OUI Type 1:
-                        * real WPA information element */
+                       /*
+                        * Microsoft OUI (00:50:F2) with OUI Type 1:
+                        * real WPA information element
+                        */
                        elems->wpa_ie = pos;
                        elems->wpa_ie_len = elen;
                        break;