diff options
author | Dedy Lansky <dlansky@codeaurora.org> | 2015-09-10 17:09:49 +0300 |
---|---|---|
committer | Linux Build Service Account <lnxbuild@localhost> | 2015-10-06 03:19:15 -0600 |
commit | 69e94ce171e0a937a5e40229aafd8f1a65a0a671 (patch) | |
tree | 215a1776058cd8575806ff0db3d91a58eeea14c9 /include | |
parent | 4584c1f9d780fd8f2412187c04d592041f4760b6 (diff) | |
download | hardware_libhardware_legacy-69e94ce171e0a937a5e40229aafd8f1a65a0a671.zip hardware_libhardware_legacy-69e94ce171e0a937a5e40229aafd8f1a65a0a671.tar.gz hardware_libhardware_legacy-69e94ce171e0a937a5e40229aafd8f1a65a0a671.tar.bz2 |
wifi: generalize ensure_config_file_exists()
ensure_config_file_exists gets config_file_template as argument instead
of using hard coded SUPP_CONFIG_TEMPLATE
Change-Id: I52b0c21d47254b5fa62e53ac71552d5dbfc445df
Diffstat (limited to 'include')
-rw-r--r-- | include/hardware_legacy/wifi.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/hardware_legacy/wifi.h b/include/hardware_legacy/wifi.h index 93f0383..a60718d 100644 --- a/include/hardware_legacy/wifi.h +++ b/include/hardware_legacy/wifi.h @@ -150,6 +150,11 @@ int wifi_change_fw_path(const char *fwpath); #define WIFI_ENTROPY_FILE "/data/misc/wifi/entropy.bin" int ensure_entropy_file_exists(); +/** +* Check and create if necessary the desired configuration file +*/ +int ensure_config_file_exists(const char *config_file, const char *config_file_template); + #if __cplusplus }; // extern "C" #endif |