/*
  * Maximum size of ep0 response buffer for ch9 requests,
  * the set_sel request uses 6 so far, the max.
-*/
+ */
 #define EP0_RESPONSE_BUFF  6
 /* Start with SS as default */
 #define EP0_MAX_PKT_SIZE 512
 
                 * check if the bd_table struct is allocated ?
                 * if yes, then check if bd memory has been allocated, then
                 * free the dma_pool and also the bd_table struct memory
-               */
+                */
                bd_table = bd_list->bd_table_array[index];
                dev_dbg(bdc->dev, "bd_table:%p index:%d\n", bd_table, index);
                if (!bd_table) {
 
        /*
         * Check if host has started transferring on endpoints
         * FUNC_WAKE_ISSUED is cleared when transfer has started after resume
-       */
+        */
        if (bdc->devstatus & FUNC_WAKE_ISSUED) {
                dev_dbg(bdc->dev, "FUNC_WAKE_ISSUED FLAG IS STILL SET\n");
                /* flag is still set, so again send func wake */
                                 * if not then send function wake again every
                                 * TNotification secs until host initiates
                                 * transfer to BDC, USB3 spec Table 8.13
-                               */
+                                */
                                schedule_delayed_work(
                                                &bdc->func_wake_notify,
                                                msecs_to_jiffies(BDC_TNOTIFY));
         * Run the controller from here and when BDC is connected to
         * Host then driver will receive a USPC SR with VBUS present
         * and then driver will do a softconnect.
-       */
+        */
        ret = bdc_run(bdc);
        if (ret) {
                dev_err(bdc->dev, "%s bdc run fail\n", __func__);