Commit d6b6fc14 authored by Joe Perches's avatar Joe Perches Committed by John W. Linville

rtlwifi: Simplify rtl_get/set inline functions

Use a temporary to make the code a bit neater.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 68e052d5
...@@ -1954,37 +1954,35 @@ static inline void rtl_write_dword(struct rtl_priv *rtlpriv, ...@@ -1954,37 +1954,35 @@ static inline void rtl_write_dword(struct rtl_priv *rtlpriv,
static inline u32 rtl_get_bbreg(struct ieee80211_hw *hw, static inline u32 rtl_get_bbreg(struct ieee80211_hw *hw,
u32 regaddr, u32 bitmask) u32 regaddr, u32 bitmask)
{ {
return ((struct rtl_priv *)(hw)->priv)->cfg->ops->get_bbreg(hw, struct rtl_priv *rtlpriv = hw->priv;
regaddr,
bitmask); return rtlpriv->cfg->ops->get_bbreg(hw, regaddr, bitmask);
} }
static inline void rtl_set_bbreg(struct ieee80211_hw *hw, u32 regaddr, static inline void rtl_set_bbreg(struct ieee80211_hw *hw, u32 regaddr,
u32 bitmask, u32 data) u32 bitmask, u32 data)
{ {
((struct rtl_priv *)(hw)->priv)->cfg->ops->set_bbreg(hw, struct rtl_priv *rtlpriv = hw->priv;
regaddr, bitmask,
data);
rtlpriv->cfg->ops->set_bbreg(hw, regaddr, bitmask, data);
} }
static inline u32 rtl_get_rfreg(struct ieee80211_hw *hw, static inline u32 rtl_get_rfreg(struct ieee80211_hw *hw,
enum radio_path rfpath, u32 regaddr, enum radio_path rfpath, u32 regaddr,
u32 bitmask) u32 bitmask)
{ {
return ((struct rtl_priv *)(hw)->priv)->cfg->ops->get_rfreg(hw, struct rtl_priv *rtlpriv = hw->priv;
rfpath,
regaddr, return rtlpriv->cfg->ops->get_rfreg(hw, rfpath, regaddr, bitmask);
bitmask);
} }
static inline void rtl_set_rfreg(struct ieee80211_hw *hw, static inline void rtl_set_rfreg(struct ieee80211_hw *hw,
enum radio_path rfpath, u32 regaddr, enum radio_path rfpath, u32 regaddr,
u32 bitmask, u32 data) u32 bitmask, u32 data)
{ {
((struct rtl_priv *)(hw)->priv)->cfg->ops->set_rfreg(hw, struct rtl_priv *rtlpriv = hw->priv;
rfpath, regaddr,
bitmask, data); rtlpriv->cfg->ops->set_rfreg(hw, rfpath, regaddr, bitmask, data);
} }
static inline bool is_hal_stop(struct rtl_hal *rtlhal) static inline bool is_hal_stop(struct rtl_hal *rtlhal)
......
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