Lines Matching full:stop
185 wl1271_debug(DEBUG_CMD, "cmd scan stop"); in wl12xx_scan_stop()
332 /* don't stop scanning automatically when something is found */ in wl1271_scan_sched_scan_config()
462 struct wl1271_cmd_sched_scan_stop *stop; in wl12xx_scan_sched_scan_stop() local
465 wl1271_debug(DEBUG_CMD, "cmd periodic scan stop"); in wl12xx_scan_sched_scan_stop()
467 /* FIXME: what to do if alloc'ing to stop fails? */ in wl12xx_scan_sched_scan_stop()
468 stop = kzalloc(sizeof(*stop), GFP_KERNEL); in wl12xx_scan_sched_scan_stop()
469 if (!stop) { in wl12xx_scan_sched_scan_stop()
470 wl1271_error("failed to alloc memory to send sched scan stop"); in wl12xx_scan_sched_scan_stop()
474 stop->role_id = wlvif->role_id; in wl12xx_scan_sched_scan_stop()
475 stop->tag = WL1271_SCAN_DEFAULT_TAG; in wl12xx_scan_sched_scan_stop()
477 ret = wl1271_cmd_send(wl, CMD_STOP_PERIODIC_SCAN, stop, in wl12xx_scan_sched_scan_stop()
478 sizeof(*stop), 0); in wl12xx_scan_sched_scan_stop()
480 wl1271_error("failed to send sched scan stop command"); in wl12xx_scan_sched_scan_stop()
485 kfree(stop); in wl12xx_scan_sched_scan_stop()