Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1682561 > unrolled thread

[PATCH] staging: atomisp: gc0310: constify acpi_device_id.

Started byArvind Yadav <arvind.yadav.cs@gmail.com>
First post2017-07-06 18:30 +0200
Last post2017-07-09 00:40 +0200
Articles 3 — 3 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] staging: atomisp: gc0310: constify acpi_device_id. Arvind Yadav <arvind.yadav.cs@gmail.com> - 2017-07-06 18:30 +0200
    Re: [PATCH] staging: atomisp: gc0310: constify acpi_device_id. Alan Cox <alan@linux.intel.com> - 2017-07-07 12:50 +0200
      Re: [PATCH] staging: atomisp: gc0310: constify acpi_device_id. Sakari Ailus <sakari.ailus@iki.fi> - 2017-07-09 00:40 +0200

#1682561 — [PATCH] staging: atomisp: gc0310: constify acpi_device_id.

FromArvind Yadav <arvind.yadav.cs@gmail.com>
Date2017-07-06 18:30 +0200
Subject[PATCH] staging: atomisp: gc0310: constify acpi_device_id.
Message-ID<u0hPc-7Y2-11@gated-at.bofh.it>
acpi_device_id are not supposed to change at runtime. All functions
working with acpi_device_id provided by <acpi/acpi_bus.h> work with
const acpi_device_id. So mark the non-const structs as const.

File size before:
   text	   data	    bss	    dec	    hex	filename
  10297	   1888	      0	  12185	   2f99 drivers/staging/media/atomisp/i2c/gc0310.o

File size After adding 'const':
   text	   data	    bss	    dec	    hex	filename
  10361	   1824	      0	  12185	   2f99 drivers/staging/media/atomisp/i2c/gc0310.o

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
---
 drivers/staging/media/atomisp/i2c/gc0310.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/media/atomisp/i2c/gc0310.c b/drivers/staging/media/atomisp/i2c/gc0310.c
index 1ec616a..c8162bb 100644
--- a/drivers/staging/media/atomisp/i2c/gc0310.c
+++ b/drivers/staging/media/atomisp/i2c/gc0310.c
@@ -1453,7 +1453,7 @@ static int gc0310_probe(struct i2c_client *client,
 	return ret;
 }
 
-static struct acpi_device_id gc0310_acpi_match[] = {
+static const struct acpi_device_id gc0310_acpi_match[] = {
 	{"XXGC0310"},
 	{},
 };
-- 
2.7.4

[toc] | [next] | [standalone]


#1683119

FromAlan Cox <alan@linux.intel.com>
Date2017-07-07 12:50 +0200
Message-ID<u0yZI-2PB-5@gated-at.bofh.it>
In reply to#1682561
On Thu, 2017-07-06 at 21:50 +0530, Arvind Yadav wrote:
> acpi_device_id are not supposed to change at runtime. All functions
> working with acpi_device_id provided by <acpi/acpi_bus.h> work with
> const acpi_device_id. So mark the non-const structs as const.
> 
> File size before:
>    text	   data	    bss	    dec	    hex	
> filename
>   10297	   1888	      0	  12185	   2f99
> drivers/staging/media/atomisp/i2c/gc0310.o
> 
> File size After adding 'const':
>    text	   data	    bss	    dec	    hex	
> filename
>   10361	   1824	      0	  12185	   2f99
> drivers/staging/media/atomisp/i2c/gc0310.o
> 
> Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
> ---
>  drivers/staging/media/atomisp/i2c/gc0310.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/staging/media/atomisp/i2c/gc0310.c
> b/drivers/staging/media/atomisp/i2c/gc0310.c
> index 1ec616a..c8162bb 100644
> --- a/drivers/staging/media/atomisp/i2c/gc0310.c
> +++ b/drivers/staging/media/atomisp/i2c/gc0310.c
> @@ -1453,7 +1453,7 @@ static int gc0310_probe(struct i2c_client
> *client,
>  	return ret;
>  }
>  
> -static struct acpi_device_id gc0310_acpi_match[] = {
> +static const struct acpi_device_id gc0310_acpi_match[] = {
>  	{"XXGC0310"},
>  	{},
>  };

(All four)

Acked-by: Alan Cox <alan@linux.intel.com>

[toc] | [prev] | [next] | [standalone]


#1683661

FromSakari Ailus <sakari.ailus@iki.fi>
Date2017-07-09 00:40 +0200
Message-ID<u16ym-7Zv-11@gated-at.bofh.it>
In reply to#1683119
On Fri, Jul 07, 2017 at 11:47:43AM +0100, Alan Cox wrote:
> On Thu, 2017-07-06 at 21:50 +0530, Arvind Yadav wrote:
> > acpi_device_id are not supposed to change at runtime. All functions
> > working with acpi_device_id provided by <acpi/acpi_bus.h> work with
> > const acpi_device_id. So mark the non-const structs as const.
> > 
> > File size before:
> >    text	   data	    bss	    dec	    hex	
> > filename
> >   10297	   1888	      0	  12185	   2f99
> > drivers/staging/media/atomisp/i2c/gc0310.o
> > 
> > File size After adding 'const':
> >    text	   data	    bss	    dec	    hex	
> > filename
> >   10361	   1824	      0	  12185	   2f99
> > drivers/staging/media/atomisp/i2c/gc0310.o
> > 
> > Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
> > ---
> >  drivers/staging/media/atomisp/i2c/gc0310.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/drivers/staging/media/atomisp/i2c/gc0310.c
> > b/drivers/staging/media/atomisp/i2c/gc0310.c
> > index 1ec616a..c8162bb 100644
> > --- a/drivers/staging/media/atomisp/i2c/gc0310.c
> > +++ b/drivers/staging/media/atomisp/i2c/gc0310.c
> > @@ -1453,7 +1453,7 @@ static int gc0310_probe(struct i2c_client
> > *client,
> >  	return ret;
> >  }
> >  
> > -static struct acpi_device_id gc0310_acpi_match[] = {
> > +static const struct acpi_device_id gc0310_acpi_match[] = {
> >  	{"XXGC0310"},
> >  	{},
> >  };
> 
> (All four)
> 
> Acked-by: Alan Cox <alan@linux.intel.com>

There's four more... I've applied all to my atomisp branch.

Arvind: please send the patches as a single set next time.

-- 
Regards,

Sakari Ailus
e-mail: sakari.ailus@iki.fi	XMPP: sailus@retiisi.org.uk

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web