aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ppp
diff options
context:
space:
mode:
authorHui Tang <tanghui20@huawei.com>2021-05-20 11:47:49 +0800
committerDavid S. Miller <davem@davemloft.net>2021-05-20 15:10:57 -0700
commit63b63138f656d2ab9e1e692b6d1e4112406741a0 (patch)
treee8b403695093c0963039e9536c3f688f88e64dd4 /drivers/net/ppp
parentnet: slip: remove leading spaces before tabs (diff)
downloadlinux-dev-63b63138f656d2ab9e1e692b6d1e4112406741a0.tar.xz
linux-dev-63b63138f656d2ab9e1e692b6d1e4112406741a0.zip
net: ppp: 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: Tom Parkin <tparkin@katalix.com> Signed-off-by: Hui Tang <tanghui20@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ppp')
-rw-r--r--drivers/net/ppp/bsd_comp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ppp/bsd_comp.c b/drivers/net/ppp/bsd_comp.c
index 61fedb23d3cf..db0dc36d12e3 100644
--- a/drivers/net/ppp/bsd_comp.c
+++ b/drivers/net/ppp/bsd_comp.c
@@ -436,7 +436,7 @@ static void *bsd_alloc (unsigned char *options, int opt_len, int decomp)
* Initialize the data information for the compression code
*/
db->totlen = sizeof (struct bsd_db) +
- (sizeof (struct bsd_dict) * hsize);
+ (sizeof (struct bsd_dict) * hsize);
db->hsize = hsize;
db->hshift = hshift;