]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
cfg80211: reg: fix reg_ignore_cell_hint return type
authorJohannes Berg <johannes.berg@intel.com>
Thu, 15 Oct 2015 12:28:56 +0000 (14:28 +0200)
committerJohannes Berg <johannes.berg@intel.com>
Fri, 16 Oct 2015 07:15:45 +0000 (09:15 +0200)
The return type should be enum reg_request_treatment for both
branches of the #ifdef.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/wireless/reg.c

index b870369fb62e4d3bdce40febdc50e8d988ef0967..2e8d6f39ed564ac7111be036a1f735da1d87d68b 100644 (file)
@@ -1353,7 +1353,8 @@ static bool reg_dev_ignore_cell_hint(struct wiphy *wiphy)
        return !(wiphy->features & NL80211_FEATURE_CELL_BASE_REG_HINTS);
 }
 #else
-static int reg_ignore_cell_hint(struct regulatory_request *pending_request)
+static enum reg_request_treatment
+reg_ignore_cell_hint(struct regulatory_request *pending_request)
 {
        return REG_REQ_IGNORE;
 }