From: Johannes Berg <[email protected]>

The new name better reflects the functionality.

Signed-off-by: Johannes Berg <[email protected]>
---
 net/wireless/reg.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/net/wireless/reg.c b/net/wireless/reg.c
index 2d1343a7b60e..156a7d6eaf95 100644
--- a/net/wireless/reg.c
+++ b/net/wireless/reg.c
@@ -478,7 +478,7 @@ static void reg_regdb_apply(struct work_struct *work)
 
 static DECLARE_WORK(reg_regdb_work, reg_regdb_apply);
 
-static int reg_regdb_query(const char *alpha2)
+static int reg_query_builtin(const char *alpha2)
 {
        const struct ieee80211_regdomain *regdom = NULL;
        struct reg_regdb_apply_request *request;
@@ -521,7 +521,7 @@ static void reg_regdb_size_check(void)
 }
 #else
 static inline void reg_regdb_size_check(void) {}
-static inline int reg_regdb_query(const char *alpha2)
+static inline int reg_query_builtin(const char *alpha2)
 {
        return -ENODATA;
 }
@@ -606,7 +606,7 @@ static enum reg_request_treatment
 reg_query_database(struct regulatory_request *request)
 {
        /* query internal regulatory database (if it exists) */
-       if (reg_regdb_query(request->alpha2) == 0)
+       if (reg_query_builtin(request->alpha2) == 0)
                return REG_REQ_OK;
 
        if (call_crda(request->alpha2) == 0)
-- 
2.5.1

--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to