Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756401AbYB0Rlp (ORCPT ); Wed, 27 Feb 2008 12:41:45 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753958AbYB0Rlg (ORCPT ); Wed, 27 Feb 2008 12:41:36 -0500 Received: from mgw1.diku.dk ([130.225.96.91]:38903 "EHLO mgw1.diku.dk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753793AbYB0Rlf (ORCPT ); Wed, 27 Feb 2008 12:41:35 -0500 Date: Wed, 27 Feb 2008 18:41:31 +0100 (MET) From: Julia Lawall To: Karol Kozimor Cc: corentincj@iksaif.net, sziwan@users.sourceforge.net, acpi4asus-user@lists.sourceforge.net, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org Subject: Re: [PATCH 2/9] drivers/acpi/asus_acpi.c: Correct use of ! and & In-Reply-To: <7C626792-02A6-4BE6-B5F2-D75899F3990C@hell.org.pl> Message-ID: References: <7C626792-02A6-4BE6-B5F2-D75899F3990C@hell.org.pl> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1081 Lines: 28 On Wed, 27 Feb 2008, Karol Kozimor wrote: > On 26-02-2008, at 21:42, Julia Lawall wrote: > > if (invert) /* invert target value */ > > - led_out = !led_out & 0x1; > > + led_out = !(led_out & 0x1); > > > > if (!write_acpi_int(hotk->handle, ledname, led_out, NULL)) > > printk(KERN_WARNING "Asus ACPI: LED (%s) write failed\n", > > > IIRC we're just supposed to flip the last bit here, so the original > code is correct. I spent some time thinking about this one. The original code is ok if led_out is always either 0x01 or 0x00. But what if it is eg 0xc0? Then the negation amounts to the negation of a nonzero number, so the result is 0. So the result of the bit and is 0. So the last bit is not flipped. But I don't know what is the range of led_out. If it is always 1 or 0, then why bother with the bit and? julia -- 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/