wlan: Send appropriate country code in regulatory hint

5GHz channels are not populated when changing band from
All to 2.4GHz and then changing band back to All from
2.4GHz. When kernel version is greater than 3.9 and when
country code is not '00', incorrect country code of 'OO'
is sent in regulatory_hint to update the channel information
in NV table. This will also cause the subsequent request,
to set the current country using regulatory hint, to fail.

Fix is to send appropriate country code of '00' instead
of 'OO' in regulatory hint.

Change-Id: I90681d383e38006730de68001a45a03e97d50cbb
CRs-Fixed: 2438099
diff --git a/CORE/HDD/src/wlan_hdd_wext.c b/CORE/HDD/src/wlan_hdd_wext.c
index 41ba21f..a8f6818 100644
--- a/CORE/HDD/src/wlan_hdd_wext.c
+++ b/CORE/HDD/src/wlan_hdd_wext.c
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2011-2018 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2011-2019 The Linux Foundation. All rights reserved.
  *
  * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  *
@@ -10369,7 +10369,7 @@
              if(curr_country[0] == '0' && curr_country[1] == '0')
                      regulatory_hint_user("IN", NL80211_USER_REG_HINT_USER);
              else
-                     regulatory_hint_user("OO", NL80211_USER_REG_HINT_USER);
+                     regulatory_hint_user("00", NL80211_USER_REG_HINT_USER);
 #else
              if(curr_country[0] == '0' && curr_country[1] == '0')
                      regulatory_hint_user("IN");