diff options
author | Hui Tang | 2021-05-20 11:47:46 +0800 |
---|---|---|
committer | David S. Miller | 2021-05-20 15:10:57 -0700 |
commit | c169a93c8176e40f8956ca365ce466537101cd51 (patch) | |
tree | a57316ec93faedbac7072c23d2349ff4bac77b6b /drivers/net/wan/z85230.c | |
parent | dc185ae6ab879a971d3b5b0cb5c98d4ab14157b7 (diff) |
net: wan: remove leading spaces before tabs
There are a few leading spaces before tabs and remove it by running
the following commard:
$ find . -name '*.[ch]' | xargs sed -r -i 's/^[ ]+\t/\t/'
Cc: Xie He <xie.he.0141@gmail.com>
Signed-off-by: Hui Tang <tanghui20@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wan/z85230.c')
-rw-r--r-- | drivers/net/wan/z85230.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/wan/z85230.c b/drivers/net/wan/z85230.c index 138930c66ad2..002b8c99ab5b 100644 --- a/drivers/net/wan/z85230.c +++ b/drivers/net/wan/z85230.c @@ -1080,7 +1080,7 @@ int z8530_sync_txdma_open(struct net_device *dev, struct z8530_channel *c) z8530_rx_done(c); z8530_rx_done(c); - /* + /* * Load the DMA interfaces up */ @@ -1092,13 +1092,13 @@ int z8530_sync_txdma_open(struct net_device *dev, struct z8530_channel *c) c->dma_ready=1; c->dma_tx = 1; - /* + /* * Enable DMA control mode */ - /* + /* * TX DMA via DIR/REQ - */ + */ c->regs[R14]|= DTRREQ; write_zsreg(c, R14, c->regs[R14]); |