Lines Matching defs:slot
358 struct acx_slot *slot;
361 wl1251_debug(DEBUG_ACX, "acx slot");
363 slot = kzalloc(sizeof(*slot), GFP_KERNEL);
364 if (!slot)
367 slot->wone_index = STATION_WONE_INDEX;
368 slot->slot_time = slot_time;
370 ret = wl1251_cmd_configure(wl, ACX_SLOT, slot, sizeof(*slot));
372 wl1251_warning("failed to set slot time: %d", ret);
377 kfree(slot);