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