diff options
author | xinhe <xinhe@google.com> | 2015-02-06 16:12:35 -0800 |
---|---|---|
committer | xinhe <xinhe@google.com> | 2015-02-06 16:12:35 -0800 |
commit | e50f8dfa34fa6b6fe04631b383c22648945de3a6 (patch) | |
tree | 661f6e2b9669fb7c57788908f674981e28c091f5 | |
parent | 323ab030f90627abb812650b4e518a2c90450b73 (diff) | |
download | hardware_libhardware_legacy-e50f8dfa34fa6b6fe04631b383c22648945de3a6.zip hardware_libhardware_legacy-e50f8dfa34fa6b6fe04631b383c22648945de3a6.tar.gz hardware_libhardware_legacy-e50f8dfa34fa6b6fe04631b383c22648945de3a6.tar.bz2 |
add HAL api wifi_set_country_code interface
Bug:19300180
Change-Id: I20fdd22932893dde3429a9923f2621234986e08a
-rw-r--r-- | include/hardware_legacy/wifi_config.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/hardware_legacy/wifi_config.h b/include/hardware_legacy/wifi_config.h index 486f40a..50603b7 100644 --- a/include/hardware_legacy/wifi_config.h +++ b/include/hardware_legacy/wifi_config.h @@ -18,7 +18,9 @@ typedef int wifi_radio; wifi_error wifi_extended_dtim_config_set(wifi_request_id id,
wifi_interface_handle iface, int extended_dtim);
-
+//set the country code to driver
+wifi_error wifi_set_country_code(wifi_request_id id, wifi_interface_handle iface,
+ const char* country_code);
#ifdef __cplusplus
}
|