diff options
author | Hui Tang <tanghui20@huawei.com> | 2021-05-20 11:47:52 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-05-20 15:10:57 -0700 |
commit | 20a4fc3bc2849068c4119c9ce4d57e8f18a1b329 (patch) | |
tree | ca476098be55b6492a2b85e736d70dc3d69a0f30 /drivers/net/appletalk/ltpc.c | |
parent | a597111a3ce330f28fca9cc3806cf7a0b3d5e4c2 (diff) | |
download | linux-20a4fc3bc2849068c4119c9ce4d57e8f18a1b329.tar.gz linux-20a4fc3bc2849068c4119c9ce4d57e8f18a1b329.tar.bz2 linux-20a4fc3bc2849068c4119c9ce4d57e8f18a1b329.zip |
net: appletalk: 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: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Signed-off-by: Hui Tang <tanghui20@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/appletalk/ltpc.c')
-rw-r--r-- | drivers/net/appletalk/ltpc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/appletalk/ltpc.c b/drivers/net/appletalk/ltpc.c index c6f73aa3700c..f0e715a93852 100644 --- a/drivers/net/appletalk/ltpc.c +++ b/drivers/net/appletalk/ltpc.c @@ -935,10 +935,10 @@ static netdev_tx_t ltpc_xmit(struct sk_buff *skb, struct net_device *dev) static int __init ltpc_probe_dma(int base, int dma) { int want = (dma == 3) ? 2 : (dma == 1) ? 1 : 3; - unsigned long timeout; - unsigned long f; + unsigned long timeout; + unsigned long f; - if (want & 1) { + if (want & 1) { if (request_dma(1,"ltpc")) { want &= ~1; } else { |