usb: gadget: bdc: fix checkpatch.pl tab warning
authorChunfeng Yun <chunfeng.yun@mediatek.com>
Wed, 13 Jan 2021 02:42:26 +0000 (10:42 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 13 Jan 2021 10:24:02 +0000 (11:24 +0100)
WARNING:SUSPECT_CODE_INDENT: suspect code indent for conditional statements
WARNING:TABSTOP: Statements should start on a tabstop

Cc: Florian Fainelli <f.fainelli@gmail.com>
Acked-by: Florian Fainelli <f.fainelli@gmail.com>
Acked-by: Felipe Balbi <balbi@kernel.org>
Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com>
Link: https://lore.kernel.org/r/1610505748-30616-9-git-send-email-chunfeng.yun@mediatek.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/gadget/udc/bdc/bdc_cmd.c
drivers/usb/gadget/udc/bdc/bdc_ep.c

index 44c2a5e..995f79c 100644 (file)
@@ -163,7 +163,7 @@ int bdc_config_ep(struct bdc *bdc, struct bdc_ep *ep)
                                        usb_endpoint_xfer_isoc(desc)) {
                        param2 |= si;
                        if (usb_endpoint_xfer_isoc(desc) && comp_desc)
-                                       mul = comp_desc->bmAttributes;
+                               mul = comp_desc->bmAttributes;
 
                }
                param2 |= mul << EPM_SHIFT;
index 3fb36c8..d227d26 100644 (file)
@@ -275,7 +275,7 @@ static inline int find_end_bdi(struct bdc_ep *ep, int next_hwd_bdi)
        end_bdi = next_hwd_bdi - 1;
        if (end_bdi < 0)
                end_bdi = ep->bd_list.max_bdi - 1;
-        else if ((end_bdi % (ep->bd_list.num_bds_table-1)) == 0)
+       else if ((end_bdi % (ep->bd_list.num_bds_table-1)) == 0)
                end_bdi--;
 
        return end_bdi;
@@ -795,7 +795,7 @@ static int ep_dequeue(struct bdc_ep *ep, struct bdc_req *req)
                        start_pending = true;
                        end_pending = true;
                } else if (end_bdi >= curr_hw_dqpi || end_bdi <= eqp_bdi) {
-                               end_pending = true;
+                       end_pending = true;
                }
        } else {
                if (start_bdi >= curr_hw_dqpi) {