net: alteon: remove leading spaces before tabs
authorHui Tang <tanghui20@huawei.com>
Wed, 19 May 2021 05:30:35 +0000 (13:30 +0800)
committerDavid S. Miller <davem@davemloft.net>
Wed, 19 May 2021 19:17:30 +0000 (12:17 -0700)
There are a few leading spaces before tabs and remove it by running the
following commard:

$ find . -name '*.c' | xargs sed -r -i 's/^[ ]+\t/\t/'
$ find . -name '*.h' | xargs sed -r -i 's/^[ ]+\t/\t/'

Cc: Jes Sorensen <jes@trained-monkey.org>
Signed-off-by: Hui Tang <tanghui20@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/alteon/acenic.c

index 1a7e4df..9dc12b1 100644 (file)
@@ -1883,16 +1883,16 @@ static u32 ace_handle_event(struct net_device *dev, u32 evtcsm, u32 evtprd)
                                }
                        }
 
-                       if (ACE_IS_TIGON_I(ap)) {
-                               struct cmd cmd;
-                               cmd.evt = C_SET_RX_JUMBO_PRD_IDX;
-                               cmd.code = 0;
-                               cmd.idx = 0;
-                               ace_issue_cmd(ap->regs, &cmd);
-                       } else {
-                               writel(0, &((ap->regs)->RxJumboPrd));
-                               wmb();
-                       }
+                       if (ACE_IS_TIGON_I(ap)) {
+                               struct cmd cmd;
+                               cmd.evt = C_SET_RX_JUMBO_PRD_IDX;
+                               cmd.code = 0;
+                               cmd.idx = 0;
+                               ace_issue_cmd(ap->regs, &cmd);
+                       } else {
+                               writel(0, &((ap->regs)->RxJumboPrd));
+                               wmb();
+                       }
 
                        ap->jumbo = 0;
                        ap->rx_jumbo_skbprd = 0;
@@ -2489,9 +2489,9 @@ restart:
                }
        }
 
-       wmb();
-       ap->tx_prd = idx;
-       ace_set_txprd(regs, ap, idx);
+       wmb();
+       ap->tx_prd = idx;
+       ace_set_txprd(regs, ap, idx);
 
        if (flagsize & BD_FLG_COAL_NOW) {
                netif_stop_queue(dev);