Lines Matching refs:iovar_buf
2676 s8 iovar_buf[WLC_IOCTL_SMLEN]; in dhd_conf_wowl_wakeind() local
2687 iovar_buf, sizeof(iovar_buf)); in dhd_conf_wowl_wakeind()
2689 wake = (wl_wowl_wakeind_t *) iovar_buf; in dhd_conf_wowl_wakeind()
2718 char *buf = NULL, *iovar_buf = NULL; in dhd_conf_mkeep_alive() local
2728 iovar_buf = kmalloc(WLC_IOCTL_SMLEN, GFP_KERNEL); in dhd_conf_mkeep_alive()
2729 if (iovar_buf == NULL) { in dhd_conf_mkeep_alive()
2746 iovar_buf, WLC_IOCTL_SMLEN); in dhd_conf_mkeep_alive()
2749 memcpy(pdata+6, iovar_buf, ETHER_ADDR_LEN); in dhd_conf_mkeep_alive()
2760 if (iovar_buf) in dhd_conf_mkeep_alive()
2761 kfree(iovar_buf); in dhd_conf_mkeep_alive()
2770 char *iovar_buf = NULL, *packet = NULL; in dhd_conf_set_garp() local
2778 iovar_buf = kmalloc(total_len, GFP_KERNEL); in dhd_conf_set_garp()
2779 if (iovar_buf == NULL) { in dhd_conf_set_garp()
2788 dhd_conf_get_iovar(dhd, ifidx, WLC_GET_VAR, "cur_etheraddr", iovar_buf, total_len); in dhd_conf_set_garp()
2792 len += snprintf(packet+len, total_len, "%02x", iovar_buf[i]); in dhd_conf_set_garp()
2796 len += snprintf(packet+len, total_len, "%02x", iovar_buf[i]); in dhd_conf_set_garp()
2811 if (iovar_buf) in dhd_conf_set_garp()
2812 kfree(iovar_buf); in dhd_conf_set_garp()