[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20070424102304.GA58841@dspnet.fr.eu.org>
Date: Tue, 24 Apr 2007 12:23:04 +0200
From: Olivier Galibert <galibert@...ox.com>
To: Kristen Carlson Accardi <kristen.c.accardi@...el.com>
Cc: Alan Cox <alan@...rguk.ukuu.org.uk>, jeff@...zik.org,
linux-kernel@...r.kernel.org, linux-scsi@...r.kernel.org,
linux-ide@...r.kernel.org, htejun@...il.com
Subject: Re: [patch 1/7] libata: check for AN support
Sorry for replying to Alan's reply, I missed the original mail.
> > +#define ata_id_has_AN(id) \
> > + ((id[76] && (~id[76])) & ((id)[78] & (1 << 5)))
(a && ~a) & (b & 32)
I don't think that does what you think it does, because at that point
it's a funny way to write 0 ((0 or 1) binary-and (0 or 32)).
I'm not even sure what it is you want. If for the first part you
wanted (id[76] != 0x00 && id[76] != 0xff), please write just that,
thanks :-)
OG.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists