[PATCH] b43: treat LCNXN-PHY as extra N-PHY devices
Arend van Spriel
arend at broadcom.com
Mon Jun 30 03:54:03 PDT 2014
On 29-06-14 21:46, Rafał Miłecki wrote:
> LCNXN is simply a continuation of N, e.g. code handling LCNXN revs 0 and
> 1 is mostly the same as for N-PHY revs 7+.
Hi Rafał,
LCNXN is actually a LCN phy with 2 streams (mimo).
Regards,
Arend
> Signed-off-by: Rafał Miłecki <zajec5 at gmail.com>
> ---
> drivers/net/wireless/b43/main.c | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/drivers/net/wireless/b43/main.c b/drivers/net/wireless/b43/main.c
> index 3e4333c..0b1aac4 100644
> --- a/drivers/net/wireless/b43/main.c
> +++ b/drivers/net/wireless/b43/main.c
> @@ -4331,6 +4331,13 @@ static int b43_phy_versioning(struct b43_wldev *dev)
> analog_type = (tmp & B43_PHYVER_ANALOG) >> B43_PHYVER_ANALOG_SHIFT;
> phy_type = (tmp & B43_PHYVER_TYPE) >> B43_PHYVER_TYPE_SHIFT;
> phy_rev = (tmp & B43_PHYVER_VERSION);
> +
> + /* LCNXN is continuation of N which run out of revisions */
> + if (phy_type == B43_PHYTYPE_LCNXN) {
> + phy_type = B43_PHYTYPE_N;
> + phy_rev += 16;
> + }
> +
> switch (phy_type) {
> #ifdef CONFIG_B43_PHY_G
> case B43_PHYTYPE_G:
>
More information about the b43-dev
mailing list