Lines Matching full:stop
201 /* don't stop scanning automatically when something is found */ in wl18xx_scan_sched_scan_config()
299 struct wl18xx_cmd_scan_stop *stop; in __wl18xx_scan_stop() local
302 wl1271_debug(DEBUG_CMD, "cmd periodic scan stop"); in __wl18xx_scan_stop()
304 stop = kzalloc(sizeof(*stop), GFP_KERNEL); in __wl18xx_scan_stop()
305 if (!stop) { in __wl18xx_scan_stop()
306 wl1271_error("failed to alloc memory to send sched scan stop"); in __wl18xx_scan_stop()
310 stop->role_id = wlvif->role_id; in __wl18xx_scan_stop()
311 stop->scan_type = scan_type; in __wl18xx_scan_stop()
313 ret = wl1271_cmd_send(wl, CMD_STOP_SCAN, stop, sizeof(*stop), 0); in __wl18xx_scan_stop()
315 wl1271_error("failed to send sched scan stop command"); in __wl18xx_scan_stop()
320 kfree(stop); in __wl18xx_scan_stop()