mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Hans de Goede <hansg@kernel.org>
To: Thomas Andreatta <thomasandreatta2000@gmail.com>
Cc: linux-kernel@vger.kernel.org, linux-staging@lists.linux.dev,
	Thomas Andreatta <thomas.andreatta2000@gmail.com>
Subject: Re: [PATCH 4/4 V2] Staging: media: atomisp: i2c: struct definition style
Date: Sun, 6 Jul 2025 17:01:26 +0200	[thread overview]
Message-ID: <ec2cf624-5849-4491-8a3f-2070d2766ec6@kernel.org> (raw)
In-Reply-To: <20250619084420.146151-4-thomas.andreatta2000@gmail.com>

Hi,

On 19-Jun-25 10:44 AM, Thomas Andreatta wrote:
> Reorder const qualifier in array declaration
> 
> Signed-off-by: Thomas Andreatta <thomas.andreatta2000@gmail.com>

Thank you for your patch.

I have merged this in my media-atomisp branch:
https://git.kernel.org/pub/scm/linux/kernel/git/hansg/linux.git/log/?h=media-atomisp

And this patch will be included in my next
pull-request to Mauro (to media subsystem maintainer)

Regards,

Hans



> ---
>  drivers/staging/media/atomisp/i2c/ov2722.h | 16 ++++++++--------
>  1 file changed, 8 insertions(+), 8 deletions(-)
> 
> diff --git a/drivers/staging/media/atomisp/i2c/ov2722.h b/drivers/staging/media/atomisp/i2c/ov2722.h
> index bc36133f3722..00317d105305 100644
> --- a/drivers/staging/media/atomisp/i2c/ov2722.h
> +++ b/drivers/staging/media/atomisp/i2c/ov2722.h
> @@ -236,7 +236,7 @@ struct ov2722_write_ctrl {
>   * Register settings for various resolution
>   */
>  #if 0
> -static struct ov2722_reg const ov2722_QVGA_30fps[] = {
> +static const struct ov2722_reg ov2722_QVGA_30fps[] = {
>  	{OV2722_8BIT, 0x3718, 0x10},
>  	{OV2722_8BIT, 0x3702, 0x0c},
>  	{OV2722_8BIT, 0x373a, 0x1c},
> @@ -346,7 +346,7 @@ static struct ov2722_reg const ov2722_QVGA_30fps[] = {
>  
>  };
>  
> -static struct ov2722_reg const ov2722_480P_30fps[] = {
> +static const struct ov2722_reg ov2722_480P_30fps[] = {
>  	{OV2722_8BIT, 0x3718, 0x10},
>  	{OV2722_8BIT, 0x3702, 0x18},
>  	{OV2722_8BIT, 0x373a, 0x3c},
> @@ -455,7 +455,7 @@ static struct ov2722_reg const ov2722_480P_30fps[] = {
>  	{OV2722_TOK_TERM, 0, 0},
>  };
>  
> -static struct ov2722_reg const ov2722_VGA_30fps[] = {
> +static const struct ov2722_reg ov2722_VGA_30fps[] = {
>  	{OV2722_8BIT, 0x3718, 0x10},
>  	{OV2722_8BIT, 0x3702, 0x18},
>  	{OV2722_8BIT, 0x373a, 0x3c},
> @@ -565,7 +565,7 @@ static struct ov2722_reg const ov2722_VGA_30fps[] = {
>  };
>  #endif
>  
> -static struct ov2722_reg const ov2722_1632_1092_30fps[] = {
> +static const struct ov2722_reg ov2722_1632_1092_30fps[] = {
>  	{OV2722_8BIT, 0x3021, 0x03}, /* For stand wait for
>  				a whole frame complete.(vblank) */
>  	{OV2722_8BIT, 0x3718, 0x10},
> @@ -667,7 +667,7 @@ static struct ov2722_reg const ov2722_1632_1092_30fps[] = {
>  	{OV2722_TOK_TERM, 0, 0}
>  };
>  
> -static struct ov2722_reg const ov2722_1452_1092_30fps[] = {
> +static const struct ov2722_reg ov2722_1452_1092_30fps[] = {
>  	{OV2722_8BIT, 0x3021, 0x03}, /* For stand wait for
>  				a whole frame complete.(vblank) */
>  	{OV2722_8BIT, 0x3718, 0x10},
> @@ -769,7 +769,7 @@ static struct ov2722_reg const ov2722_1452_1092_30fps[] = {
>  };
>  
>  #if 0
> -static struct ov2722_reg const ov2722_1M3_30fps[] = {
> +static const struct ov2722_reg ov2722_1M3_30fps[] = {
>  	{OV2722_8BIT, 0x3718, 0x10},
>  	{OV2722_8BIT, 0x3702, 0x24},
>  	{OV2722_8BIT, 0x373a, 0x60},
> @@ -877,7 +877,7 @@ static struct ov2722_reg const ov2722_1M3_30fps[] = {
>  };
>  #endif
>  
> -static struct ov2722_reg const ov2722_1080p_30fps[] = {
> +static const struct ov2722_reg ov2722_1080p_30fps[] = {
>  	{OV2722_8BIT, 0x3021, 0x03}, /* For stand wait for a whole
>  					frame complete.(vblank) */
>  	{OV2722_8BIT, 0x3718, 0x10},
> @@ -983,7 +983,7 @@ static struct ov2722_reg const ov2722_1080p_30fps[] = {
>  };
>  
>  #if 0 /* Currently unused */
> -static struct ov2722_reg const ov2722_720p_30fps[] = {
> +static const struct ov2722_reg ov2722_720p_30fps[] = {
>  	{OV2722_8BIT, 0x3021, 0x03},
>  	{OV2722_8BIT, 0x3718, 0x10},
>  	{OV2722_8BIT, 0x3702, 0x24},


  reply	other threads:[~2025-07-06 15:01 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-19  8:44 [PATCH 1/4 V2] Staging: media: atomisp: i2c: removed redundand debug message Thomas Andreatta
2025-06-19  8:44 ` [PATCH 2/4 " Thomas Andreatta
2025-07-06 15:01   ` Hans de Goede
2025-06-19  8:44 ` [PATCH 3/4 V2] Staging: media: atomisp: i2c: struct definition style Thomas Andreatta
2025-07-06 15:01   ` Hans de Goede
2025-06-19  8:44 ` [PATCH 4/4 " Thomas Andreatta
2025-07-06 15:01   ` Hans de Goede [this message]
2025-07-06 14:56 ` [PATCH 1/4 V2] Staging: media: atomisp: i2c: removed redundand debug message Hans de Goede

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=ec2cf624-5849-4491-8a3f-2070d2766ec6@kernel.org \
    --to=hansg@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-staging@lists.linux.dev \
    --cc=thomas.andreatta2000@gmail.com \
    --cc=thomasandreatta2000@gmail.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

all inboxes | Powered by JetHome®