Skip to content

Commit

Permalink
rtlwifi: Simplify rtl_get/set inline functions
Browse files Browse the repository at this point in the history
Use a temporary to make the code a bit neater.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Joe Perches authored and John W. Linville committed Apr 9, 2012
1 parent 68e052d commit d6b6fc1
Showing 1 changed file with 11 additions and 13 deletions.
24 changes: 11 additions & 13 deletions drivers/net/wireless/rtlwifi/wifi.h
Original file line number Diff line number Diff line change
Expand Up @@ -1954,37 +1954,35 @@ static inline void rtl_write_dword(struct rtl_priv *rtlpriv,
static inline u32 rtl_get_bbreg(struct ieee80211_hw *hw,
u32 regaddr, u32 bitmask)
{
return ((struct rtl_priv *)(hw)->priv)->cfg->ops->get_bbreg(hw,
regaddr,
bitmask);
struct rtl_priv *rtlpriv = hw->priv;

return rtlpriv->cfg->ops->get_bbreg(hw, regaddr, bitmask);
}

static inline void rtl_set_bbreg(struct ieee80211_hw *hw, u32 regaddr,
u32 bitmask, u32 data)
{
((struct rtl_priv *)(hw)->priv)->cfg->ops->set_bbreg(hw,
regaddr, bitmask,
data);
struct rtl_priv *rtlpriv = hw->priv;

rtlpriv->cfg->ops->set_bbreg(hw, regaddr, bitmask, data);
}

static inline u32 rtl_get_rfreg(struct ieee80211_hw *hw,
enum radio_path rfpath, u32 regaddr,
u32 bitmask)
{
return ((struct rtl_priv *)(hw)->priv)->cfg->ops->get_rfreg(hw,
rfpath,
regaddr,
bitmask);
struct rtl_priv *rtlpriv = hw->priv;

return rtlpriv->cfg->ops->get_rfreg(hw, rfpath, regaddr, bitmask);
}

static inline void rtl_set_rfreg(struct ieee80211_hw *hw,
enum radio_path rfpath, u32 regaddr,
u32 bitmask, u32 data)
{
((struct rtl_priv *)(hw)->priv)->cfg->ops->set_rfreg(hw,
rfpath, regaddr,
bitmask, data);
struct rtl_priv *rtlpriv = hw->priv;

rtlpriv->cfg->ops->set_rfreg(hw, rfpath, regaddr, bitmask, data);
}

static inline bool is_hal_stop(struct rtl_hal *rtlhal)
Expand Down

0 comments on commit d6b6fc1

Please sign in to comment.