summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSrinivas Dasari <dasaris@codeaurora.org>2016-08-20 14:16:32 +0530
committerSrinivas Dasari <dasaris@codeaurora.org>2016-08-20 14:29:39 +0530
commita81cb09ad2c5f90c37cb7e6b5e43f63fb42468c5 (patch)
tree8695a91d3e1f6fe55e8b236087c7174190c31222
parenta472a38b37ea12e42137a8484ccd20bba6ed1d39 (diff)
downloadandroid_hardware_qcom_wlan-a81cb09ad2c5f90c37cb7e6b5e43f63fb42468c5.tar.gz
android_hardware_qcom_wlan-a81cb09ad2c5f90c37cb7e6b5e43f63fb42468c5.tar.bz2
android_hardware_qcom_wlan-a81cb09ad2c5f90c37cb7e6b5e43f63fb42468c5.zip
Remove the log which comes if oem library is not available
wpa_supplicant_8_lib prints an error log if oem specific library is not present. But oem specific library may not be present in all builds. So remove the log which might be unnecessary. Change-Id: Id946f0afb3270aec6df9d8c5d27153f4180ecae8 CRs-Fixed: 1057215
-rw-r--r--qcwcn/wpa_supplicant_8_lib/driver_cmd_nl80211_extn.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/qcwcn/wpa_supplicant_8_lib/driver_cmd_nl80211_extn.c b/qcwcn/wpa_supplicant_8_lib/driver_cmd_nl80211_extn.c
index df0784e..b6136ce 100644
--- a/qcwcn/wpa_supplicant_8_lib/driver_cmd_nl80211_extn.c
+++ b/qcwcn/wpa_supplicant_8_lib/driver_cmd_nl80211_extn.c
@@ -49,8 +49,6 @@ int wpa_driver_oem_initialize(wpa_driver_oem_cb_table_t *oem_cb_table)
void* oem_handle = dlopen("/vendor/lib/libwpa_drv_oem.so", RTLD_NOW);
#endif
if (!oem_handle) {
- wpa_printf(MSG_ERROR, "%s: NULL oem_handle , err: %s",
- __FUNCTION__, dlerror());
return WPA_DRIVER_OEM_STATUS_FAILURE;
}