Lines Matching defs:vbm
171 struct wl1251_cmd_vbm_update *vbm;
174 wl1251_debug(DEBUG_CMD, "cmd vbm");
176 vbm = kzalloc(sizeof(*vbm), GFP_KERNEL);
177 if (!vbm) {
183 vbm->tim.bitmap_ctrl = bitmap_control;
185 wl1251_warning("cmd vbm len is %d B, truncating to %d",
189 memcpy(vbm->tim.pvb_field, bitmap, bitmap_len);
190 vbm->tim.identity = identity;
191 vbm->tim.length = bitmap_len + 3;
193 vbm->len = cpu_to_le16(bitmap_len + 5);
195 ret = wl1251_cmd_send(wl, CMD_VBM, vbm, sizeof(*vbm));
202 kfree(vbm);