Hi David, Today's linux-next merge of the net tree got a conflict in drivers/net/wireless/p54/p54common.c between commit 9de1643b4d59b416568bae04dbf67a374360765b ("p54: misplaced parentheses") from the wireless-current tree and commit 51eed9923d98477e7f7473edd60d876d1cecc8c5 ("p54: implement FIF_OTHER_BSS filter setting") from the net tree. I fixed it up as suggested in John's merge test (see below) and can carry the fix for a while. -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx http://www.canb.auug.org.au/~sfr/ diff --cc drivers/net/wireless/p54/p54common.c index 530daee,45c2e7a..0000000 --- a/drivers/net/wireless/p54/p54common.c +++ b/drivers/net/wireless/p54/p54common.c @@@ -1932,8 -2211,9 +2211,9 @@@ static void p54_configure_filter(struc struct p54_common *priv = dev->priv; *total_flags &= FIF_PROMISC_IN_BSS | + FIF_OTHER_BSS | - (*total_flags & FIF_PROMISC_IN_BSS) ? - FIF_FCSFAIL : 0; + (*total_flags & FIF_PROMISC_IN_BSS ? + FIF_FCSFAIL : 0); priv->filter_flags = *total_flags; -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html