From: Jakub Kicinski Date: Tue, 19 Oct 2021 16:28:16 +0000 (-0700) Subject: cfg80211: prepare for const netdev->dev_addr X-Git-Tag: v6.6.17~8953^2~122^2~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=10de5a599f92ef776886073a33ca7bbbe6b14d37;p=platform%2Fkernel%2Flinux-rpi.git cfg80211: prepare for const netdev->dev_addr netdev->dev_addr will be const soon. All callers of wdev_address() can take const already. Signed-off-by: Jakub Kicinski Link: https://lore.kernel.org/r/20211019162816.1384077-2-kuba@kernel.org Signed-off-by: Johannes Berg --- diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index e9e313a..02737dd 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h @@ -5558,7 +5558,7 @@ struct wireless_dev { unsigned long unprot_beacon_reported; }; -static inline u8 *wdev_address(struct wireless_dev *wdev) +static inline const u8 *wdev_address(struct wireless_dev *wdev) { if (wdev->netdev) return wdev->netdev->dev_addr;