[PATCH] libertas: convert libertas_mpp into anycast_mask
authorLuis Carlos <luisca@cozybit.com>
Thu, 7 Jun 2007 20:40:59 +0000 (16:40 -0400)
committerJohn W. Linville <linville@tuxdriver.com>
Tue, 12 Jun 2007 18:07:54 +0000 (14:07 -0400)
commit82fde74b94f11eee1e9c30e43fb162f80a5e63c0
treeb5f0fd209c90b0ba9074a690518e0cd092b83fd9
parent2fb3bd6a23e5d37889a78b6a13a124fa7c586009
[PATCH] libertas: convert libertas_mpp into anycast_mask

With firmware 5.220.11.p5, this allows to specify the anycast addresses the
device will listen to.

The anycast address range is C0:27:C0:27:C0:XX where XX goes from 00 to 1F (or
0 to 31 in dec). The value to write on anycast_mask will specify which
addresses the device listens to. Bits in a 32 bit int are numbered from 0
(least significative bit) to 31. A specific address ending in YY will be
listened to if bit YY in the value is set to one.

Examples:

0x00000000 : do not listen to any anycast address
0xFFFFFFFF : listen to every anycast address from :00 to :1F
0x00000013 : listen to anycast addresses :00, :01 and :04

Signed-off-by: Luis Carlos Cobo <luisca@cozybit.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/libertas/host.h
drivers/net/wireless/libertas/main.c