mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
To: Linux Media Mailing List <linux-media@vger.kernel.org>
Cc: Sakari Ailus <sakari.ailus@linux.intel.com>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/2] media: atomisp: replace old ---help--- tags by just help
Date: Mon, 15 Jun 2020 07:22:54 +0200	[thread overview]
Message-ID: <20200615072254.7be610bd@coco.lan> (raw)
In-Reply-To: <849016f49273cd245401cc2d7d454d3a12330658.1592198305.git.mchehab+huawei@kernel.org>

Em Mon, 15 Jun 2020 07:18:34 +0200
Mauro Carvalho Chehab <mchehab+huawei@kernel.org> escreveu:

> There are several places on this file using the deprecated
> ---help--- tag.
> 
> Replaces them.


Just ignore it. A treewide patch already changed it:

	a7f7f6248d97 ("treewide: replace '---help---' in Kconfig files with 'help'")

I'll double-check the spacing things here. If it lasts upstream, I'll
send the changes on a separate patch.

> 
> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
> ---
>  drivers/staging/media/atomisp/i2c/Kconfig        | 14 +++++++-------
>  drivers/staging/media/atomisp/i2c/ov5693/Kconfig | 14 +++++++-------
>  2 files changed, 14 insertions(+), 14 deletions(-)
> 
> diff --git a/drivers/staging/media/atomisp/i2c/Kconfig b/drivers/staging/media/atomisp/i2c/Kconfig
> index 69f325c9a724..038de895ce40 100644
> --- a/drivers/staging/media/atomisp/i2c/Kconfig
> +++ b/drivers/staging/media/atomisp/i2c/Kconfig
> @@ -9,7 +9,7 @@ config VIDEO_ATOMISP_OV2722
>         tristate "OVT ov2722 sensor support"
>  	depends on ACPI
>         depends on I2C && VIDEO_V4L2
> -       ---help---
> +       help
>  	 This is a Video4Linux2 sensor-level driver for the OVT
>  	 OV2722 raw camera.
>  
> @@ -21,7 +21,7 @@ config VIDEO_ATOMISP_GC2235
>         tristate "Galaxy gc2235 sensor support"
>  	depends on ACPI
>         depends on I2C && VIDEO_V4L2
> -       ---help---
> +       help
>  	 This is a Video4Linux2 sensor-level driver for the OVT
>  	 GC2235 raw camera.
>  
> @@ -32,7 +32,7 @@ config VIDEO_ATOMISP_GC2235
>  config VIDEO_ATOMISP_MSRLIST_HELPER
>         tristate "Helper library to load, parse and apply large register lists."
>         depends on I2C
> -       ---help---
> +       help
>  	 This is a helper library to be used from a sensor driver to load, parse
>  	 and apply large register lists.
>  
> @@ -43,7 +43,7 @@ config VIDEO_ATOMISP_MT9M114
>         tristate "Aptina mt9m114 sensor support"
>  	depends on ACPI
>         depends on I2C && VIDEO_V4L2
> -       ---help---
> +       help
>  	 This is a Video4Linux2 sensor-level driver for the Micron
>  	 mt9m114 1.3 Mpixel camera.
>  
> @@ -55,7 +55,7 @@ config VIDEO_ATOMISP_GC0310
>  	tristate "GC0310 sensor support"
>  	depends on ACPI
>  	depends on I2C && VIDEO_V4L2
> -	---help---
> +	help
>  	  This is a Video4Linux2 sensor-level driver for the Galaxycore
>  	  GC0310 0.3MP sensor.
>  
> @@ -63,7 +63,7 @@ config VIDEO_ATOMISP_OV2680
>         tristate "Omnivision OV2680 sensor support"
>  	depends on ACPI
>         depends on I2C && VIDEO_V4L2
> -       ---help---
> +       help
>  	 This is a Video4Linux2 sensor-level driver for the Omnivision
>  	 OV2680 raw camera.
>  
> @@ -79,7 +79,7 @@ config VIDEO_ATOMISP_LM3554
>         tristate "LM3554 flash light driver"
>  	depends on ACPI
>         depends on VIDEO_V4L2 && I2C
> -       ---help---
> +       help
>  	 This is a Video4Linux2 sub-dev driver for the LM3554
>  	 flash light driver.
>  
> diff --git a/drivers/staging/media/atomisp/i2c/ov5693/Kconfig b/drivers/staging/media/atomisp/i2c/ov5693/Kconfig
> index c6ee90b2d13f..536a731dba50 100644
> --- a/drivers/staging/media/atomisp/i2c/ov5693/Kconfig
> +++ b/drivers/staging/media/atomisp/i2c/ov5693/Kconfig
> @@ -1,12 +1,12 @@
>  # SPDX-License-Identifier: GPL-2.0
>  config VIDEO_ATOMISP_OV5693
> -       tristate "Omnivision ov5693 sensor support"
> +	tristate "Omnivision ov5693 sensor support"
>  	depends on ACPI
> -       depends on I2C && VIDEO_V4L2
> -       ---help---
> -	 This is a Video4Linux2 sensor-level driver for the Micron
> -	 ov5693 5 Mpixel camera.
> +	depends on I2C && VIDEO_V4L2
> +	help
> +	  This is a Video4Linux2 sensor-level driver for the Micron
> +	  ov5693 5 Mpixel camera.
>  
> -	 ov5693 is video camera sensor.
> +	  ov5693 is video camera sensor.
>  
> -	 It currently only works with the atomisp driver.
> +	  It currently only works with the atomisp driver.



Thanks,
Mauro

  reply	other threads:[~2020-06-15  5:23 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-15  5:18 [PATCH 1/2] media: cec: don't use the deprecated help tag Mauro Carvalho Chehab
2020-06-15  5:18 ` [PATCH 2/2] media: atomisp: replace old ---help--- tags by just help Mauro Carvalho Chehab
2020-06-15  5:22   ` Mauro Carvalho Chehab [this message]
2020-06-15  5:36     ` Joe Perches
2020-06-15  5:21 ` [PATCH 1/2] media: cec: don't use the deprecated help tag Mauro Carvalho Chehab

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200615072254.7be610bd@coco.lan \
    --to=mchehab+huawei@kernel.org \
    --cc=devel@driverdev.osuosl.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=sakari.ailus@linux.intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome