cfg80211: rename reg_device_remove() to wiphy_regulatory_deregister()
authorLuis R. Rodriguez <mcgrof@qca.qualcomm.com>
Thu, 12 Jul 2012 18:49:19 +0000 (11:49 -0700)
committerJohannes Berg <johannes.berg@intel.com>
Tue, 17 Jul 2012 10:16:39 +0000 (12:16 +0200)
This makes it clearer what we're doing. This now makes a bit
more sense given that regardless of the wiphy if the cell
base station hint feature is supported we will be modifying the
way the regulatory core behaves.

Signed-off-by: Luis R. Rodriguez <mcgrof@qca.qualcomm.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/wireless/core.c
net/wireless/reg.c
net/wireless/reg.h

index c0307b05986c7d1d5403944119ce7a1958accdd5..58485964e50b39488d17ea7a9d07af5ee9a90e5f 100644 (file)
@@ -653,9 +653,11 @@ void wiphy_unregister(struct wiphy *wiphy)
        /* nothing */
        cfg80211_unlock_rdev(rdev);
 
-       /* If this device got a regulatory hint tell core its
-        * free to listen now to a new shiny device regulatory hint */
-       reg_device_remove(wiphy);
+       /*
+        * If this device got a regulatory hint tell core its
+        * free to listen now to a new shiny device regulatory hint
+        */
+       wiphy_regulatory_deregister(wiphy);
 
        cfg80211_rdev_list_generation++;
        device_del(&rdev->wiphy.dev);
index 83583a9c15d9e5e6946f69096a9845b816d556ac..50604fd14cd2c58eed234794150c06dc50c47f59 100644 (file)
@@ -2391,7 +2391,7 @@ void wiphy_regulatory_register(struct wiphy *wiphy)
 }
 
 /* Caller must hold cfg80211_mutex */
-void reg_device_remove(struct wiphy *wiphy)
+void wiphy_regulatory_deregister(struct wiphy *wiphy)
 {
        struct wiphy *request_wiphy = NULL;
 
index 519492fdda3c9421e0c2ead848590233be2d8d5e..f36b15fb4592f3b8490c121630e498986ed46574 100644 (file)
@@ -27,7 +27,7 @@ int regulatory_hint_user(const char *alpha2,
 
 int reg_device_uevent(struct device *dev, struct kobj_uevent_env *env);
 void wiphy_regulatory_register(struct wiphy *wiphy);
-void reg_device_remove(struct wiphy *wiphy);
+void wiphy_regulatory_deregister(struct wiphy *wiphy);
 
 int __init regulatory_init(void);
 void regulatory_exit(void);