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
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
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
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-
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