mac80211: Make addr const in SET_IEEE80211_PERM_ADDR()
authorBjorn Andersson <bjorn@kryo.se>
Thu, 24 Dec 2015 08:33:26 +0000 (00:33 -0800)
committerJohannes Berg <johannes.berg@intel.com>
Wed, 24 Feb 2016 08:04:21 +0000 (09:04 +0100)
Make the addr parameter const in SET_IEEE80211_PERM_ADDR() to save
clients from having to cast away a const qualifier.

Signed-off-by: Bjorn Andersson <bjorn.andersson@sonymobile.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
include/net/mac80211.h

index df5698e..566df20 100644 (file)
@@ -2217,7 +2217,7 @@ static inline void SET_IEEE80211_DEV(struct ieee80211_hw *hw, struct device *dev
  * @hw: the &struct ieee80211_hw to set the MAC address for
  * @addr: the address to set
  */
-static inline void SET_IEEE80211_PERM_ADDR(struct ieee80211_hw *hw, u8 *addr)
+static inline void SET_IEEE80211_PERM_ADDR(struct ieee80211_hw *hw, const u8 *addr)
 {
        memcpy(hw->wiphy->perm_addr, addr, ETH_ALEN);
 }