summaryrefslogtreecommitdiffstats
path: root/bcmdhd/wpa_supplicant_8_lib
diff options
context:
space:
mode:
authorDmitry Shmidt <dimitrysh@google.com>2014-02-20 23:15:35 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-02-20 23:15:35 +0000
commitf9d5731e6f39748b18a5e0512882d499725aa108 (patch)
treefca90cd9fff07a3ca31fffd5b9408d5161afbe94 /bcmdhd/wpa_supplicant_8_lib
parentf68acce90723f4eb32aefd85a0da2f9b347cca4f (diff)
parent5f9470fc1b0eeaea323b0ac4b7891bda05caf3d4 (diff)
downloadhardware_broadcom_wlan-f9d5731e6f39748b18a5e0512882d499725aa108.zip
hardware_broadcom_wlan-f9d5731e6f39748b18a5e0512882d499725aa108.tar.gz
hardware_broadcom_wlan-f9d5731e6f39748b18a5e0512882d499725aa108.tar.bz2
am 5f9470fc: HACK: Do not send hang message in case of failure
* commit '5f9470fc1b0eeaea323b0ac4b7891bda05caf3d4': HACK: Do not send hang message in case of failure
Diffstat (limited to 'bcmdhd/wpa_supplicant_8_lib')
-rw-r--r--bcmdhd/wpa_supplicant_8_lib/driver_cmd_nl80211.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bcmdhd/wpa_supplicant_8_lib/driver_cmd_nl80211.c b/bcmdhd/wpa_supplicant_8_lib/driver_cmd_nl80211.c
index 2273ce7..432b269 100644
--- a/bcmdhd/wpa_supplicant_8_lib/driver_cmd_nl80211.c
+++ b/bcmdhd/wpa_supplicant_8_lib/driver_cmd_nl80211.c
@@ -95,8 +95,8 @@ int wpa_driver_nl80211_driver_cmd(void *priv, char *cmd, char *buf,
ifr.ifr_data = &priv_cmd;
if ((ret = ioctl(drv->global->ioctl_sock, SIOCDEVPRIVATE + 1, &ifr)) < 0) {
- wpa_printf(MSG_ERROR, "%s: failed to issue private commands\n", __func__);
- wpa_driver_send_hang_msg(drv);
+ wpa_printf(MSG_ERROR, "%s: failed to issue private command: %s", __func__, cmd);
+ /* wpa_driver_send_hang_msg(drv); */
} else {
drv_errors = 0;
ret = 0;