Lines Matching defs:start
416 struct wl1271_cmd_sched_scan_start *start;
419 wl1271_debug(DEBUG_CMD, "cmd periodic scan start");
428 start = kzalloc(sizeof(*start), GFP_KERNEL);
429 if (!start)
432 start->role_id = wlvif->role_id;
433 start->tag = WL1271_SCAN_DEFAULT_TAG;
435 ret = wl1271_cmd_send(wl, CMD_START_PERIODIC_SCAN, start,
436 sizeof(*start), 0);
438 wl1271_error("failed to send scan start command");
443 kfree(start);