return 0;
 }
 
-/*
- * Handle the HCI, WIMAX_SDU_TX_FLOW.
- */
+/* Handle the HCI, WIMAX_SDU_TX_FLOW. */
 static int control_sdu_tx_flow(struct sdiowm_dev *sdev, u8 *hci_data, int len)
 {
        struct tx_cxt *tx = &sdev->tx;
                tx->stop_sdu_tx = 0;
                if (tx->can_send)
                        schedule_work(&sdev->ws);
-               /*
-                * If free buffer for sdu tx doesn't exist, then tx queue
+               /* If free buffer for sdu tx doesn't exist, then tx queue
                 * should not be woken. For this reason, don't pass the command,
                 * START_SDU_TX.
                 */
 
        t->callback = cb;
        t->cb_data = cb_data;
 
-       /*
-        * In some cases, USB Module of WiMax is blocked when data size is
+       /* In some cases, USB Module of WiMax is blocked when data size is
         * the multiple of 512. So, increment length by one in that case.
         */
        if ((len % 512) == 0)
                                list_for_each_entry(t, &tx->sdu_list, list) {
                                        usb_submit_urb(t->urb, GFP_ATOMIC);
                                }
-                               /*
-                                * If free buffer for sdu tx doesn't
+                               /* If free buffer for sdu tx doesn't
                                 * exist, then tx queue should not be
                                 * woken. For this reason, don't pass
                                 * the command, START_SDU_TX.
 
                                return ret;
                } else if (req->cmd == SIOCS_DATA) {
                        if (req->data_id == SIOC_DATA_FSM) {
-                               /*NOTE: gdm_update_fsm should be called
-                               before gdm_wimax_ioctl_set_data is called*/
+                               /* NOTE: gdm_update_fsm should be called
+                                * before gdm_wimax_ioctl_set_data is called.
+                                */
                                gdm_update_fsm(dev,
                                               (struct fsm_s *)req->data.buf);
                        }
 
 #define W_SCAN_ALL_SUBSCRIPTION                1
 #define W_SCAN_SPECIFIED_SUBSCRIPTION  2
 
-/*
- * TLV
+/* TLV
  *
  * [31:31] indicates the type is composite.
  * [30:16] is the length of the type. 0 length means length is variable.
  * [15:0] is the actual type.
- *
  */
 #define TLV_L(x)               (((x) >> 16) & 0xff)
 #define TLV_T(x)               ((x) & 0xff)