From: Hui Tang Date: Thu, 20 May 2021 03:47:53 +0000 (+0800) Subject: ifb: remove leading spaces before tabs X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=cf9207d77aef758efe884e3edb6bf38baacf24ec;p=linux.git ifb: 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/' Signed-off-by: Hui Tang Signed-off-by: David S. Miller --- diff --git a/drivers/net/ifb.c b/drivers/net/ifb.c index ab7022582154e..e9258a9f3702c 100644 --- a/drivers/net/ifb.c +++ b/drivers/net/ifb.c @@ -16,10 +16,10 @@ by Patrick McHardy and then maintained by Andre Correa. You need the tc action mirror or redirect to feed this device - packets. + packets. - Authors: Jamal Hadi Salim (2005) + Authors: Jamal Hadi Salim (2005) */