All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mark Pearson <devnull.port@googlemail.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Karol Kozimor <sziwan@hell.org.pl>, Julia Lawall <julia@diku.dk>,
	corentincj@iksaif.net, sziwan@users.sourceforge.net,
	acpi4asus-user@lists.sourceforge.net,
	linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org,
	Len Brown <lenb@kernel.org>
Subject: Re: [PATCH 2/9] drivers/acpi/asus_acpi.c: Correct use of.and &
Date: Fri, 29 Feb 2008 18:06:48 +0000	[thread overview]
Message-ID: <47C849B8.1000902@googlemail.com> (raw)
In-Reply-To: <20080228215503.b942bb3c.akpm@linux-foundation.org>

Andrew Morton wrote:
>> Seems an odd way of doing:
>>
>> 	led_out ^= 0x01;
> 
> It does.
> 
>> It this due to some optimisation?
> 
> Surely not ;)
>
;) Thought so - one doesn't like to be too presumptuous ;)

> That code has been there for many years.
> 
> I changed the patch to this:
> 
> --- a/drivers/acpi/asus_acpi.c~drivers-acpi-asus_acpic-correct-use-of-and
> +++ a/drivers/acpi/asus_acpi.c
> @@ -610,7 +610,7 @@ write_led(const char __user * buffer, un
>  	    (led_out) ? (hotk->status | ledmask) : (hotk->status & ~ledmask);
>  
>  	if (invert)		/* invert target value */
> -		led_out = !led_out & 0x1;
> +		led_out = !led_out;
>  
>  	if (!write_acpi_int(hotk->handle, ledname, led_out, NULL))
>  		printk(KERN_WARNING "Asus ACPI: LED (%s) write failed\n",
> _
> 
> 

Is the ! operator architecture/compiler dependent? or can one always say that
!NON_ZERO_VALUE = 0 and !0 = 1?

Cheers, Mark.

WARNING: multiple messages have this Message-ID (diff)
From: Mark Pearson <devnull.port@googlemail.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Karol Kozimor <sziwan@hell.org.pl>, Julia Lawall <julia@diku.dk>,
	corentincj@iksaif.net, sziwan@users.sourceforge.net,
	acpi4asus-user@lists.sourceforge.net,
	linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org,
	Len Brown <lenb@kernel.org>
Subject: Re: [PATCH 2/9] drivers/acpi/asus_acpi.c: Correct use of ! and &
Date: Fri, 29 Feb 2008 19:06:48 +0100	[thread overview]
Message-ID: <47C849B8.1000902@googlemail.com> (raw)
In-Reply-To: <20080228215503.b942bb3c.akpm@linux-foundation.org>

Andrew Morton wrote:
>> Seems an odd way of doing:
>>
>> 	led_out ^= 0x01;
> 
> It does.
> 
>> It this due to some optimisation?
> 
> Surely not ;)
>
;) Thought so - one doesn't like to be too presumptuous ;)

> That code has been there for many years.
> 
> I changed the patch to this:
> 
> --- a/drivers/acpi/asus_acpi.c~drivers-acpi-asus_acpic-correct-use-of-and
> +++ a/drivers/acpi/asus_acpi.c
> @@ -610,7 +610,7 @@ write_led(const char __user * buffer, un
>  	    (led_out) ? (hotk->status | ledmask) : (hotk->status & ~ledmask);
>  
>  	if (invert)		/* invert target value */
> -		led_out = !led_out & 0x1;
> +		led_out = !led_out;
>  
>  	if (!write_acpi_int(hotk->handle, ledname, led_out, NULL))
>  		printk(KERN_WARNING "Asus ACPI: LED (%s) write failed\n",
> _
> 
> 

Is the ! operator architecture/compiler dependent? or can one always say that
!NON_ZERO_VALUE == 0 and !0 == 1?

Cheers, Mark.

  parent reply	other threads:[~2008-02-29 18:06 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-02-26 20:42 [PATCH 2/9] drivers/acpi/asus_acpi.c: Correct use of.and & Julia Lawall
2008-02-26 20:42 ` [PATCH 2/9] drivers/acpi/asus_acpi.c: Correct use of ! and & Julia Lawall
2008-02-27 17:03 ` [PATCH 2/9] drivers/acpi/asus_acpi.c: Correct use of.and & Karol Kozimor
2008-02-27 17:03   ` [PATCH 2/9] drivers/acpi/asus_acpi.c: Correct use of ! and & Karol Kozimor
2008-02-27 17:41   ` [PATCH 2/9] drivers/acpi/asus_acpi.c: Correct use of.and & Julia Lawall
2008-02-27 17:41     ` [PATCH 2/9] drivers/acpi/asus_acpi.c: Correct use of ! and & Julia Lawall
2008-02-27 18:29   ` [PATCH 2/9] drivers/acpi/asus_acpi.c: Correct use of.and & Mark Pearson
2008-02-27 18:29     ` [PATCH 2/9] drivers/acpi/asus_acpi.c: Correct use of ! and & Mark Pearson
2008-02-29  5:55     ` [PATCH 2/9] drivers/acpi/asus_acpi.c: Correct use of.and & Andrew Morton
2008-02-29  5:55       ` [PATCH 2/9] drivers/acpi/asus_acpi.c: Correct use of ! and & Andrew Morton
2008-02-29  6:10       ` [PATCH 2/9] drivers/acpi/asus_acpi.c: Correct use of.and & Matthew Wilcox
2008-02-29  6:10         ` [PATCH 2/9] drivers/acpi/asus_acpi.c: Correct use of ! and & Matthew Wilcox
2008-02-29  6:14         ` [PATCH 2/9] drivers/acpi/asus_acpi.c: Correct use of.and & Matthew Wilcox
2008-02-29  6:14           ` [PATCH 2/9] drivers/acpi/asus_acpi.c: Correct use of ! and & Matthew Wilcox
2008-02-29  6:19         ` [PATCH 2/9] drivers/acpi/asus_acpi.c: Correct use of.and & Andrew Morton
2008-02-29  6:19           ` [PATCH 2/9] drivers/acpi/asus_acpi.c: Correct use of ! and & Andrew Morton
2008-02-29 11:01       ` [PATCH 2/9] drivers/acpi/asus_acpi.c: Correct use of.and & Julia Lawall
2008-02-29 11:01         ` [PATCH 2/9] drivers/acpi/asus_acpi.c: Correct use of ! and & Julia Lawall
2008-02-29 11:08         ` [PATCH 2/9] drivers/acpi/asus_acpi.c: Correct use of.and & Andrew Morton
2008-02-29 11:08           ` [PATCH 2/9] drivers/acpi/asus_acpi.c: Correct use of ! and & Andrew Morton
2008-02-29 18:06       ` Mark Pearson [this message]
2008-02-29 18:06         ` Mark Pearson
2008-02-29 21:33         ` [PATCH 2/9] drivers/acpi/asus_acpi.c: Correct use of.and & Andrew Morton
2008-02-29 21:33           ` [PATCH 2/9] drivers/acpi/asus_acpi.c: Correct use of ! and & Andrew Morton

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=47C849B8.1000902@googlemail.com \
    --to=devnull.port@googlemail.com \
    --cc=acpi4asus-user@lists.sourceforge.net \
    --cc=akpm@linux-foundation.org \
    --cc=corentincj@iksaif.net \
    --cc=julia@diku.dk \
    --cc=kernel-janitors@vger.kernel.org \
    --cc=lenb@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sziwan@hell.org.pl \
    --cc=sziwan@users.sourceforge.net \
    /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 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.