diff options
| author | Kai Liu <kaliu@codeaurora.org> | 2017-04-14 13:36:25 +0800 |
|---|---|---|
| committer | Kai Liu <kaliu@codeaurora.org> | 2017-04-14 15:56:21 +0800 |
| commit | bb546e7f89c33c806d93d520bf9d0f347dd9c731 (patch) | |
| tree | 87d31b77236ac80a6c7edc5f81b04a0b588d373b | |
| parent | fe7a21f601ea3bdf2f695ba445b2ad7d583fc866 (diff) | |
qcacld-2.0: add country code 'DM'
1. add country code DM support
2. fix the count of total country
Change-Id: Ibc911f7f26efe477971b4b8e3004a44dafca303c
CRs-Fixed: 2033791
| -rw-r--r-- | CORE/VOSS/src/vos_nvitem.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CORE/VOSS/src/vos_nvitem.c b/CORE/VOSS/src/vos_nvitem.c index 3268f2865f34..241a234e21a3 100644 --- a/CORE/VOSS/src/vos_nvitem.c +++ b/CORE/VOSS/src/vos_nvitem.c @@ -288,7 +288,7 @@ chan_to_ht_40_index_map chan_to_ht_40_index[NUM_20MHZ_RF_CHANNELS] = static CountryInfoTable_t countryInfoTable = { /* the first entry in the table is always the world domain */ - 138, + 140, { {REGDOMAIN_WORLD, {'0', '0'}}, // WORLD DOMAIN {REGDOMAIN_FCC, {'A', 'D'}}, // ANDORRA @@ -327,6 +327,7 @@ static CountryInfoTable_t countryInfoTable = {REGDOMAIN_ETSI, {'C', 'Z'}}, //CZECH REPUBLIC {REGDOMAIN_ETSI, {'D', 'E'}}, //GERMANY {REGDOMAIN_ETSI, {'D', 'K'}}, //DENMARK + {REGDOMAIN_FCC, {'D', 'M'}}, //DOMINICA {REGDOMAIN_FCC, {'D', 'O'}}, //DOMINICAN REPUBLIC {REGDOMAIN_ETSI, {'D', 'Z'}}, //ALGERIA {REGDOMAIN_ETSI, {'E', 'C'}}, //ECUADOR |
