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