diff mbox series

mac80211: Variable type completion

Message ID 20220816181040.9044-1-gaoxin@cdjrlc.com
State New
Headers show
Series mac80211: Variable type completion | expand

Commit Message

Xin Gao Aug. 16, 2022, 6:10 p.m. UTC
'unsigned int' is better than 'unsigned'.

Signed-off-by: Xin Gao <gaoxin@cdjrlc.com>
---
 net/mac80211/ibss.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/net/mac80211/ibss.c b/net/mac80211/ibss.c
index 14c04fd48b7a..16fe69deb40b 100644
--- a/net/mac80211/ibss.c
+++ b/net/mac80211/ibss.c
@@ -1349,7 +1349,7 @@  static void ieee80211_sta_create_ibss(struct ieee80211_sub_if_data *sdata)
 				  capability, 0, true);
 }
 
-static unsigned ibss_setup_channels(struct wiphy *wiphy,
+static unsigned int ibss_setup_channels(struct wiphy *wiphy,
 				    struct ieee80211_channel **channels,
 				    unsigned int channels_max,
 				    u32 center_freq, u32 width)