Re: [PATCH] treewide: Remove leading spaces in Kconfig files

2021-05-17 Thread Juerg Haefliger
On Mon, May 17, 2021 at 7:46 AM Greg KH wrote: > > On Sun, May 16, 2021 at 03:22:09PM +0200, Juerg Haefliger wrote: > > There are a few occurences of leading spaces before tabs in a couple of > > Kconfig files. Remove them by running the following command: > > > > $ find . -name 'Kconfig*' | xar

Re: [PATCH] treewide: Remove leading spaces in Kconfig files

2021-05-17 Thread Juerg Haefliger
On Mon, 17 May 2021 10:17:38 +0200 Greg KH wrote: > On Mon, May 17, 2021 at 10:07:43AM +0200, Juerg Haefliger wrote: > > On Mon, May 17, 2021 at 7:46 AM Greg KH wrote: > > > > > > > > On Sun, May 16, 2021 at 03:22:09PM +0200, Juerg Haefliger wrote: > > > > There are a few occurences of lead

Re: [PATCH] treewide: Remove leading spaces in Kconfig files

2021-05-17 Thread Greg KH
On Mon, May 17, 2021 at 10:07:43AM +0200, Juerg Haefliger wrote: > On Mon, May 17, 2021 at 7:46 AM Greg KH wrote: > > > > On Sun, May 16, 2021 at 03:22:09PM +0200, Juerg Haefliger wrote: > > > There are a few occurences of leading spaces before tabs in a couple of > > > Kconfig files. Remove them

[PATCH] treewide: Remove leading spaces in Kconfig files

2021-05-17 Thread Juerg Haefliger
There are a few occurences of leading spaces before tabs in a couple of Kconfig files. Remove them by running the following command: $ find . -name 'Kconfig*' | xargs sed -r -i 's/^[ ]+\t/\t/' Signed-off-by: Juerg Haefliger --- arch/arm/mach-omap1/Kconfig | 12 ++-- arch/arm/mach-

Re: [PATCH] treewide: Remove leading spaces in Kconfig files

2021-05-16 Thread Greg KH
On Sun, May 16, 2021 at 03:22:09PM +0200, Juerg Haefliger wrote: > There are a few occurences of leading spaces before tabs in a couple of > Kconfig files. Remove them by running the following command: > > $ find . -name 'Kconfig*' | xargs sed -r -i 's/^[ ]+\t/\t/' > > Signed-off-by: Juerg Haef