On Mon, Feb 11, 2008 at 07:52:30PM +0100, Christian Lamparter wrote: > and off-topic: please merge another older patch. (see attachment) > >Re: [PATCH split 4/8] fix 'and' typo's in wireless/p54common > >Date: 26.10.2007 22:13 > >From: Roel Kluin <12o3l@xxxxxxxxxx> > >To: linux-wireless@xxxxxxxxxxxxxxx > > > > Fix priority mistakes similar to '!x & y' in wireless/p54common > > > > Signed-off-by: Roel Kluin <12o3l@xxxxxxxxxx> > Acked-by: Christian Lamparter <chunkeey@xxxxxx> > diff --git a/drivers/net/wireless/p54common.c b/drivers/net/wireless/p54common.c > index 1437db0..8ee1453 100644 > --- a/drivers/net/wireless/p54common.c > +++ b/drivers/net/wireless/p54common.c > @@ -374,7 +374,7 @@ static void p54_rx_frame_sent(struct ieee80211_hw *dev, struct sk_buff *skb) > if ((entry_hdr->magic1 & cpu_to_le16(0x4000)) != 0) > pad = entry_data->align[0]; > > - if (!status.control.flags & IEEE80211_TXCTL_NO_ACK) { > + if (!(status.control.flags & IEEE80211_TXCTL_NO_ACK)) { > if (!(payload->status & 0x01)) > status.flags |= IEEE80211_TX_STATUS_ACK; > else > This is part of the commit here: commit f59d9782751bf1a2c51e7e1e9f614ffec35fb52e Author: Roel Kluin <12o3l@xxxxxxxxxx> Date: Fri Oct 26 21:51:26 2007 +0200 wireless: fix '!x & y' typo's Fix priority mistakes similar to '!x & y' Signed-off-by: Roel Kluin <12o3l@xxxxxxxxxx> Signed-off-by: John W. Linville <linville@xxxxxxxxxxxxx> Hth! -- John W. Linville linville@xxxxxxxxxxxxx - To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html