The "rd" variable isn't needed any more since 
4f366c5dabcb
"wireless: only use alpha2 regulatory information from country IE"
Signed-off-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
 
                         u8 *country_ie,
                         u8 country_ie_len)
 {
-       struct ieee80211_regdomain *rd = NULL;
        char alpha2[2];
        enum environment_cap env = ENVIRON_ANY;
        struct regulatory_request *request;
 
        request = kzalloc(sizeof(struct regulatory_request), GFP_KERNEL);
        if (!request)
-               goto free_rd_out;
+               goto out;
 
        request->wiphy_idx = get_wiphy_idx(wiphy);
        request->alpha2[0] = alpha2[0];
 
        return;
 
-free_rd_out:
-       kfree(rd);
 out:
        mutex_unlock(®_mutex);
 }