Message ID | 20210517095839.81833-1-juergh@canonical.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | backlight: Remove leading spaces in Kconfig | expand |
On Mon, May 17, 2021 at 11:58:39AM +0200, Juerg Haefliger wrote: > Remove leading spaces before tabs in Kconfig file(s) by running the > following command: > > $ find drivers/video/backlight -name 'Kconfig*' | \ > xargs sed -r -i 's/^[ ]+\t/\t/' > > Signed-off-by: Juerg Haefliger <juergh@canonical.com> > --- > drivers/video/backlight/Kconfig | 10 +++++----- > 1 file changed, 5 insertions(+), 5 deletions(-) > > diff --git a/drivers/video/backlight/Kconfig b/drivers/video/backlight/Kconfig > index d83c87b902c1..a967974f6cd6 100644 > --- a/drivers/video/backlight/Kconfig > +++ b/drivers/video/backlight/Kconfig > @@ -129,11 +129,11 @@ config LCD_HX8357 > driver. > > config LCD_OTM3225A Whilst removing the unwanted spaces (two of them on each line) could we also remove the two unwanted spaces from the config line as well. Daniel. > - tristate "ORISE Technology OTM3225A support" > - depends on SPI > - help > - If you have a panel based on the OTM3225A controller > - chip then say y to include a driver for it. > + tristate "ORISE Technology OTM3225A support" > + depends on SPI > + help > + If you have a panel based on the OTM3225A controller > + chip then say y to include a driver for it. > > endif # LCD_CLASS_DEVICE > > -- > 2.27.0 >
diff --git a/drivers/video/backlight/Kconfig b/drivers/video/backlight/Kconfig index d83c87b902c1..a967974f6cd6 100644 --- a/drivers/video/backlight/Kconfig +++ b/drivers/video/backlight/Kconfig @@ -129,11 +129,11 @@ config LCD_HX8357 driver. config LCD_OTM3225A - tristate "ORISE Technology OTM3225A support" - depends on SPI - help - If you have a panel based on the OTM3225A controller - chip then say y to include a driver for it. + tristate "ORISE Technology OTM3225A support" + depends on SPI + help + If you have a panel based on the OTM3225A controller + chip then say y to include a driver for it. endif # LCD_CLASS_DEVICE
Remove leading spaces before tabs in Kconfig file(s) by running the following command: $ find drivers/video/backlight -name 'Kconfig*' | \ xargs sed -r -i 's/^[ ]+\t/\t/' Signed-off-by: Juerg Haefliger <juergh@canonical.com> --- drivers/video/backlight/Kconfig | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-)