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

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