All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] asus-laptop: remove redundant initializers
@ 2016-04-07 20:20 Giedrius Statkevičius
  2016-04-07 20:20 ` [PATCH 2/2] asus-laptop: remove unused variable Giedrius Statkevičius
  0 siblings, 1 reply; 6+ messages in thread
From: Giedrius Statkevičius @ 2016-04-07 20:20 UTC (permalink / raw)
  To: corentin.chary, dvhart
  Cc: acpi4asus-user, platform-driver-x86, linux-kernel,
	Giedrius Statkevičius

Initializing rv to AE_OK is pointless because later function results are
assigned to them and only then the variable is used

Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@gmail.com>
---
 drivers/platform/x86/asus-laptop.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/platform/x86/asus-laptop.c b/drivers/platform/x86/asus-laptop.c
index f2b5d0a..d86d42e 100644
--- a/drivers/platform/x86/asus-laptop.c
+++ b/drivers/platform/x86/asus-laptop.c
@@ -771,7 +771,7 @@ static int asus_read_brightness(struct backlight_device *bd)
 {
 	struct asus_laptop *asus = bl_get_data(bd);
 	unsigned long long value;
-	acpi_status rv = AE_OK;
+	acpi_status rv;
 
 	rv = acpi_evaluate_integer(asus->handle, METHOD_BRIGHTNESS_GET,
 				   NULL, &value);
@@ -865,7 +865,7 @@ static ssize_t infos_show(struct device *dev, struct device_attribute *attr,
 	int len = 0;
 	unsigned long long temp;
 	char buf[16];		/* enough for all info */
-	acpi_status rv = AE_OK;
+	acpi_status rv;
 
 	/*
 	 * We use the easy way, we don't care of off and count,
@@ -1265,7 +1265,7 @@ static DEVICE_ATTR_RO(ls_value);
 static int asus_gps_status(struct asus_laptop *asus)
 {
 	unsigned long long status;
-	acpi_status rv = AE_OK;
+	acpi_status rv;
 
 	rv = acpi_evaluate_integer(asus->handle, METHOD_GPS_STATUS,
 				   NULL, &status);
-- 
2.8.0

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 2/2] asus-laptop: remove unused variable
  2016-04-07 20:20 [PATCH 1/2] asus-laptop: remove redundant initializers Giedrius Statkevičius
@ 2016-04-07 20:20 ` Giedrius Statkevičius
  2016-04-10  3:21   ` Darren Hart
  0 siblings, 1 reply; 6+ messages in thread
From: Giedrius Statkevičius @ 2016-04-07 20:20 UTC (permalink / raw)
  To: corentin.chary, dvhart
  Cc: acpi4asus-user, platform-driver-x86, linux-kernel,
	Giedrius Statkevičius

`out' was assigned value but it was never used so remove it

Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@gmail.com>
---
 drivers/platform/x86/asus-laptop.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/drivers/platform/x86/asus-laptop.c b/drivers/platform/x86/asus-laptop.c
index d86d42e..39ddcee 100644
--- a/drivers/platform/x86/asus-laptop.c
+++ b/drivers/platform/x86/asus-laptop.c
@@ -946,11 +946,8 @@ static ssize_t sysfs_acpi_set(struct asus_laptop *asus,
 			      const char *method)
 {
 	int rv, value;
-	int out = 0;
 
 	rv = parse_arg(buf, count, &value);
-	if (rv > 0)
-		out = value ? 1 : 0;
 
 	if (write_acpi_int(asus->handle, method, value))
 		return -ENODEV;
-- 
2.8.0

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH 2/2] asus-laptop: remove unused variable
  2016-04-07 20:20 ` [PATCH 2/2] asus-laptop: remove unused variable Giedrius Statkevičius
@ 2016-04-10  3:21   ` Darren Hart
  2016-04-10  8:48     ` Giedrius Statkevičius
  0 siblings, 1 reply; 6+ messages in thread
From: Darren Hart @ 2016-04-10  3:21 UTC (permalink / raw)
  To: Giedrius Statkevičius
  Cc: corentin.chary, acpi4asus-user, platform-driver-x86, linux-kernel

On Thu, Apr 07, 2016 at 11:20:01PM +0300, Giedrius Statkevičius wrote:
> `out' was assigned value but it was never used so remove it
> 
> Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@gmail.com>
> ---
>  drivers/platform/x86/asus-laptop.c | 3 ---
>  1 file changed, 3 deletions(-)
> 
> diff --git a/drivers/platform/x86/asus-laptop.c b/drivers/platform/x86/asus-laptop.c
> index d86d42e..39ddcee 100644
> --- a/drivers/platform/x86/asus-laptop.c
> +++ b/drivers/platform/x86/asus-laptop.c
> @@ -946,11 +946,8 @@ static ssize_t sysfs_acpi_set(struct asus_laptop *asus,
>  			      const char *method)
>  {
>  	int rv, value;
> -	int out = 0;
>  
>  	rv = parse_arg(buf, count, &value);
> -	if (rv > 0)
> -		out = value ? 1 : 0;
>  
>  	if (write_acpi_int(asus->handle, method, value))

out is indeed unused, however the rv > 0 condition is relevant as <=0 will pass
value uninitialized to write_acpi_int.

-- 
Darren Hart
Intel Open Source Technology Center

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 2/2] asus-laptop: remove unused variable
  2016-04-10  3:21   ` Darren Hart
@ 2016-04-10  8:48     ` Giedrius Statkevičius
  2016-04-15  0:34       ` Darren Hart
  2016-04-15  0:36       ` Darren Hart
  0 siblings, 2 replies; 6+ messages in thread
From: Giedrius Statkevičius @ 2016-04-10  8:48 UTC (permalink / raw)
  To: Darren Hart
  Cc: corentin.chary, acpi4asus-user, platform-driver-x86, linux-kernel

On Sat, Apr 09, 2016 at 08:21:21PM -0700, Darren Hart wrote:
> On Thu, Apr 07, 2016 at 11:20:01PM +0300, Giedrius Statkevičius wrote:
> > `out' was assigned value but it was never used so remove it
> > 
> > Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@gmail.com>
> > ---
> >  drivers/platform/x86/asus-laptop.c | 3 ---
> >  1 file changed, 3 deletions(-)
> > 
> > diff --git a/drivers/platform/x86/asus-laptop.c b/drivers/platform/x86/asus-laptop.c
> > index d86d42e..39ddcee 100644
> > --- a/drivers/platform/x86/asus-laptop.c
> > +++ b/drivers/platform/x86/asus-laptop.c
> > @@ -946,11 +946,8 @@ static ssize_t sysfs_acpi_set(struct asus_laptop *asus,
> >  			      const char *method)
> >  {
> >  	int rv, value;
> > -	int out = 0;
> >  
> >  	rv = parse_arg(buf, count, &value);
> > -	if (rv > 0)
> > -		out = value ? 1 : 0;
> >  
> >  	if (write_acpi_int(asus->handle, method, value))
> 
> out is indeed unused, however the rv > 0 condition is relevant as <=0 will pass
> value uninitialized to write_acpi_int.
That's indeed a problem. Somehow I missed that :( Should I make a v2 to include
another patch that checks for rv < 0 or send it as an independent one?

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 2/2] asus-laptop: remove unused variable
  2016-04-10  8:48     ` Giedrius Statkevičius
@ 2016-04-15  0:34       ` Darren Hart
  2016-04-15  0:36       ` Darren Hart
  1 sibling, 0 replies; 6+ messages in thread
From: Darren Hart @ 2016-04-15  0:34 UTC (permalink / raw)
  To: Giedrius Statkevičius
  Cc: corentin.chary, acpi4asus-user, platform-driver-x86, linux-kernel

On Sun, Apr 10, 2016 at 11:48:52AM +0300, Giedrius Statkevičius wrote:
> On Sat, Apr 09, 2016 at 08:21:21PM -0700, Darren Hart wrote:
> > On Thu, Apr 07, 2016 at 11:20:01PM +0300, Giedrius Statkevičius wrote:
> > > `out' was assigned value but it was never used so remove it
> > > 
> > > Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@gmail.com>
> > > ---
> > >  drivers/platform/x86/asus-laptop.c | 3 ---
> > >  1 file changed, 3 deletions(-)
> > > 
> > > diff --git a/drivers/platform/x86/asus-laptop.c b/drivers/platform/x86/asus-laptop.c
> > > index d86d42e..39ddcee 100644
> > > --- a/drivers/platform/x86/asus-laptop.c
> > > +++ b/drivers/platform/x86/asus-laptop.c
> > > @@ -946,11 +946,8 @@ static ssize_t sysfs_acpi_set(struct asus_laptop *asus,
> > >  			      const char *method)
> > >  {
> > >  	int rv, value;
> > > -	int out = 0;
> > >  
> > >  	rv = parse_arg(buf, count, &value);
> > > -	if (rv > 0)
> > > -		out = value ? 1 : 0;
> > >  
> > >  	if (write_acpi_int(asus->handle, method, value))
> > 
> > out is indeed unused, however the rv > 0 condition is relevant as <=0 will pass
> > value uninitialized to write_acpi_int.
> That's indeed a problem. Somehow I missed that :( Should I make a v2 to include
> another patch that checks for rv < 0 or send it as an independent one?
> 

Please just rewrite this one to do the right thing as a v2.

-- 
Darren Hart
Intel Open Source Technology Center

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 2/2] asus-laptop: remove unused variable
  2016-04-10  8:48     ` Giedrius Statkevičius
  2016-04-15  0:34       ` Darren Hart
@ 2016-04-15  0:36       ` Darren Hart
  1 sibling, 0 replies; 6+ messages in thread
From: Darren Hart @ 2016-04-15  0:36 UTC (permalink / raw)
  To: Giedrius Statkevičius
  Cc: corentin.chary, acpi4asus-user, platform-driver-x86, linux-kernel

On Sun, Apr 10, 2016 at 11:48:52AM +0300, Giedrius Statkevičius wrote:
> On Sat, Apr 09, 2016 at 08:21:21PM -0700, Darren Hart wrote:
> > On Thu, Apr 07, 2016 at 11:20:01PM +0300, Giedrius Statkevičius wrote:
> > > `out' was assigned value but it was never used so remove it
> > > 
> > > Signed-off-by: Giedrius Statkevičius <giedrius.statkevicius@gmail.com>
> > > ---
> > >  drivers/platform/x86/asus-laptop.c | 3 ---
> > >  1 file changed, 3 deletions(-)
> > > 
> > > diff --git a/drivers/platform/x86/asus-laptop.c b/drivers/platform/x86/asus-laptop.c
> > > index d86d42e..39ddcee 100644
> > > --- a/drivers/platform/x86/asus-laptop.c
> > > +++ b/drivers/platform/x86/asus-laptop.c
> > > @@ -946,11 +946,8 @@ static ssize_t sysfs_acpi_set(struct asus_laptop *asus,
> > >  			      const char *method)
> > >  {
> > >  	int rv, value;
> > > -	int out = 0;
> > >  
> > >  	rv = parse_arg(buf, count, &value);
> > > -	if (rv > 0)
> > > -		out = value ? 1 : 0;
> > >  
> > >  	if (write_acpi_int(asus->handle, method, value))
> > 
> > out is indeed unused, however the rv > 0 condition is relevant as <=0 will pass
> > value uninitialized to write_acpi_int.
> That's indeed a problem. Somehow I missed that :( Should I make a v2 to include
> another patch that checks for rv < 0 or send it as an independent one?
> 

Sorry, my response was not clear. Please resend both patches as a v2, with the
first unchanged, and this one updated to do the right thing. This just makes
managing the patches as series simpler.

Thank you,

-- 
Darren Hart
Intel Open Source Technology Center

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2016-04-15  0:36 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-07 20:20 [PATCH 1/2] asus-laptop: remove redundant initializers Giedrius Statkevičius
2016-04-07 20:20 ` [PATCH 2/2] asus-laptop: remove unused variable Giedrius Statkevičius
2016-04-10  3:21   ` Darren Hart
2016-04-10  8:48     ` Giedrius Statkevičius
2016-04-15  0:34       ` Darren Hart
2016-04-15  0:36       ` Darren Hart

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.