Commit 0d62b4db authored by Roland Vossen's avatar Roland Vossen Committed by Greg Kroah-Hartman

staging: brcm80211: cleaned up softmac phy macro's affecting code flow

Substituted macro's.
Reported-by: default avatarJohannes Berg <johannes@sipsolutions.net>
Reviewed-by: default avatarPieter-Paul Giesberts <pieterpg@broadcom.com>
Reviewed-by: default avatarArend van Spriel <arend@broadcom.com>
Signed-off-by: default avatarRoland Vossen <rvossen@broadcom.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 33bc9551
...@@ -204,7 +204,8 @@ u16 read_radio_reg(struct brcms_phy *pi, u16 addr) ...@@ -204,7 +204,8 @@ u16 read_radio_reg(struct brcms_phy *pi, u16 addr)
switch (pi->pubpi.phy_type) { switch (pi->pubpi.phy_type) {
case PHY_TYPE_N: case PHY_TYPE_N:
CASECHECK(PHYTYPE, PHY_TYPE_N); if (!CONF_HAS(PHYTYPE, PHY_TYPE_N))
break;
if (NREV_GE(pi->pubpi.phy_rev, 7)) if (NREV_GE(pi->pubpi.phy_rev, 7))
addr |= RADIO_2057_READ_OFF; addr |= RADIO_2057_READ_OFF;
else else
...@@ -212,7 +213,8 @@ u16 read_radio_reg(struct brcms_phy *pi, u16 addr) ...@@ -212,7 +213,8 @@ u16 read_radio_reg(struct brcms_phy *pi, u16 addr)
break; break;
case PHY_TYPE_LCN: case PHY_TYPE_LCN:
CASECHECK(PHYTYPE, PHY_TYPE_LCN); if (!CONF_HAS(PHYTYPE, PHY_TYPE_LCN))
break;
addr |= RADIO_2064_READ_OFF; addr |= RADIO_2064_READ_OFF;
break; break;
......
...@@ -220,11 +220,6 @@ ...@@ -220,11 +220,6 @@
#define PHYTYPE_IS(var, val)\ #define PHYTYPE_IS(var, val)\
(PHYCONF_HAS(val) && (PHYCONF_IS(val) || ((var) == (val)))) (PHYCONF_HAS(val) && (PHYCONF_IS(val) || ((var) == (val))))
/* Finally, early-exit from switch case if anyone wants it... */
#define CASECHECK(config, val) if (!(CONF_HAS(config, val))) break
#define CASEMSK(config, mask) if (!(CONF_MSK(config, mask))) break
/* Set up PHYTYPE automatically: (depends on PHY_TYPE_X, from d11.h) */ /* Set up PHYTYPE automatically: (depends on PHY_TYPE_X, from d11.h) */
#define _PHYCONF_N (1 << PHY_TYPE_N) #define _PHYCONF_N (1 << PHY_TYPE_N)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment