On Sun, 2010-08-22 at 21:49 +0200, Gábor Stefanik wrote: > 2010/8/22 Rafał Miłecki <zajec5@xxxxxxxxx>: > > @@ -3103,7 +3105,7 @@ static void b43_nphy_set_rx_core_state(struct b43_wldev *dev, u8 mask) > > b43_phy_maskset(dev, B43_NPHY_RFSEQCA, ~B43_NPHY_RFSEQCA_RXEN, > > (mask & 0x3) << B43_NPHY_RFSEQCA_RXEN_SHIFT); > > > > - if (mask & 0x3 != 0x3) { > > + if ((mask & 0x3) != 0x3) { > > Why is this needed? An & doesn't magically transform into an && under > any circumstances... For the same reason it's used in the b43_phy_maskset call. Clarity. -- 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