Lines Matching full:stop
215 /* don't stop scanning automatically when something is found */ in wl18xx_scan_sched_scan_config()
313 struct wl18xx_cmd_scan_stop *stop; in __wl18xx_scan_stop() local
316 wl1271_debug(DEBUG_CMD, "cmd periodic scan stop"); in __wl18xx_scan_stop()
318 stop = kzalloc(sizeof(*stop), GFP_KERNEL); in __wl18xx_scan_stop()
319 if (!stop) { in __wl18xx_scan_stop()
320 wl1271_error("failed to alloc memory to send sched scan stop"); in __wl18xx_scan_stop()
324 stop->role_id = wlvif->role_id; in __wl18xx_scan_stop()
325 stop->scan_type = scan_type; in __wl18xx_scan_stop()
327 ret = wl1271_cmd_send(wl, CMD_STOP_SCAN, stop, sizeof(*stop), 0); in __wl18xx_scan_stop()
329 wl1271_error("failed to send sched scan stop command"); in __wl18xx_scan_stop()
334 kfree(stop); in __wl18xx_scan_stop()