public inbox for linux-acpi@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1 linux-next] ACPI / SBS: fix sparse warning
@ 2014-09-28 18:44 Fabian Frederick
  2014-09-29  5:40 ` Sudip Mukherjee
  2014-09-29 23:49 ` Rafael J. Wysocki
  0 siblings, 2 replies; 4+ messages in thread
From: Fabian Frederick @ 2014-09-28 18:44 UTC (permalink / raw)
  To: linux-kernel; +Cc: Fabian Frederick, Rafael J. Wysocki, Len Brown, linux-acpi

Adding parentheses around expression to avoid:
drivers/acpi/sbs.c:444:28: warning: dubious: !x & y

Signed-off-by: Fabian Frederick <fabf@skynet.be>
---
 drivers/acpi/sbs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/acpi/sbs.c b/drivers/acpi/sbs.c
index 32aecea..a7a3edd 100644
--- a/drivers/acpi/sbs.c
+++ b/drivers/acpi/sbs.c
@@ -441,7 +441,7 @@ static int acpi_ac_get_present(struct acpi_sbs *sbs)
 	 * The spec requires that bit 4 always be 1. If it's not set, assume
 	 * that the implementation doesn't support an SBS charger
 	 */
-	if (!(status >> 4) & 0x1)
+	if (!((status >> 4) & 0x1))
 		return -ENODEV;
 
 	sbs->charger_present = (status >> 15) & 0x1;
-- 
1.9.1


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

* Re: [PATCH 1/1 linux-next] ACPI / SBS: fix sparse warning
  2014-09-28 18:44 [PATCH 1/1 linux-next] ACPI / SBS: fix sparse warning Fabian Frederick
@ 2014-09-29  5:40 ` Sudip Mukherjee
  2014-09-29 16:30   ` Fabian Frederick
  2014-09-29 23:49 ` Rafael J. Wysocki
  1 sibling, 1 reply; 4+ messages in thread
From: Sudip Mukherjee @ 2014-09-29  5:40 UTC (permalink / raw)
  To: Fabian Frederick; +Cc: linux-kernel, Rafael J. Wysocki, Len Brown, linux-acpi

On Sun, Sep 28, 2014 at 08:44:47PM +0200, Fabian Frederick wrote:
> Adding parentheses around expression to avoid:
> drivers/acpi/sbs.c:444:28: warning: dubious: !x & y
> 
> Signed-off-by: Fabian Frederick <fabf@skynet.be>
> ---
>  drivers/acpi/sbs.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/acpi/sbs.c b/drivers/acpi/sbs.c
> index 32aecea..a7a3edd 100644
> --- a/drivers/acpi/sbs.c
> +++ b/drivers/acpi/sbs.c
> @@ -441,7 +441,7 @@ static int acpi_ac_get_present(struct acpi_sbs *sbs)
>  	 * The spec requires that bit 4 always be 1. If it's not set, assume
>  	 * that the implementation doesn't support an SBS charger
>  	 */
> -	if (!(status >> 4) & 0x1)
> +	if (!((status >> 4) & 0x1))

i think the logic changed over here.
it was !x & y , but now it has become !(x & y)
! is having higher priority than & so !x & y will mean ((!x) & y)

thanks
sudip
>  		return -ENODEV;
>  
>  	sbs->charger_present = (status >> 15) & 0x1;
> -- 
> 1.9.1
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/

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

* Re: [PATCH 1/1 linux-next] ACPI / SBS: fix sparse warning
  2014-09-29  5:40 ` Sudip Mukherjee
@ 2014-09-29 16:30   ` Fabian Frederick
  0 siblings, 0 replies; 4+ messages in thread
From: Fabian Frederick @ 2014-09-29 16:30 UTC (permalink / raw)
  To: Sudip Mukherjee; +Cc: Len Brown, linux-acpi, Rafael J. Wysocki, linux-kernel



> On 29 September 2014 at 07:40 Sudip Mukherjee <sudipm.mukherjee@gmail.com>
> wrote:
>
>
> On Sun, Sep 28, 2014 at 08:44:47PM +0200, Fabian Frederick wrote:
> > Adding parentheses around expression to avoid:
> > drivers/acpi/sbs.c:444:28: warning: dubious: !x & y
> >
> > Signed-off-by: Fabian Frederick <fabf@skynet.be>
> > ---
> >  drivers/acpi/sbs.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/acpi/sbs.c b/drivers/acpi/sbs.c
> > index 32aecea..a7a3edd 100644
> > --- a/drivers/acpi/sbs.c
> > +++ b/drivers/acpi/sbs.c
> > @@ -441,7 +441,7 @@ static int acpi_ac_get_present(struct acpi_sbs *sbs)
> >      * The spec requires that bit 4 always be 1. If it's not set, assume
> >      * that the implementation doesn't support an SBS charger
> >      */
> > -   if (!(status >> 4) & 0x1)
> > +   if (!((status >> 4) & 0x1))
>
> i think the logic changed over here.
> it was !x & y , but now it has become !(x & y)
> ! is having higher priority than & so !x & y will mean ((!x) & y)
>
> thanks
> sudip
Hello Sudip,

You're right, logic has changed but IMHO expression was wrong.

Let's take value 100, decimal.
Binary: 0110>0<100

Spec states that bit 4 must be 1 so value is wrong.

We don't go in
if (!(status>>4) & 0x1)

but

if (!((status>>4) & 0x1))
        return -ENODEV;

is triggered.

Regards,
Fabian
> >             return -ENODEV;
> > 
> >     sbs->charger_present = (status >> 15) & 0x1;
> > --
> > 1.9.1
> >
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> > Please read the FAQ at  http://www.tux.org/lkml/

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

* Re: [PATCH 1/1 linux-next] ACPI / SBS: fix sparse warning
  2014-09-28 18:44 [PATCH 1/1 linux-next] ACPI / SBS: fix sparse warning Fabian Frederick
  2014-09-29  5:40 ` Sudip Mukherjee
@ 2014-09-29 23:49 ` Rafael J. Wysocki
  1 sibling, 0 replies; 4+ messages in thread
From: Rafael J. Wysocki @ 2014-09-29 23:49 UTC (permalink / raw)
  To: Fabian Frederick; +Cc: linux-kernel, Len Brown, linux-acpi

On Sunday, September 28, 2014 08:44:47 PM Fabian Frederick wrote:
> Adding parentheses around expression to avoid:
> drivers/acpi/sbs.c:444:28: warning: dubious: !x & y
> 
> Signed-off-by: Fabian Frederick <fabf@skynet.be>

I was faster: https://patchwork.kernel.org/patch/4990671/


-- 
I speak only for myself.
Rafael J. Wysocki, Intel Open Source Technology Center.

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

end of thread, other threads:[~2014-09-29 23:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-28 18:44 [PATCH 1/1 linux-next] ACPI / SBS: fix sparse warning Fabian Frederick
2014-09-29  5:40 ` Sudip Mukherjee
2014-09-29 16:30   ` Fabian Frederick
2014-09-29 23:49 ` Rafael J. Wysocki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox