Lines Matching full:wbuf
129 u8 wbuf[2]; in slim_connect_port_channel() local
130 struct slim_val_inf msg = {0, 2, NULL, wbuf, NULL}; in slim_connect_port_channel()
137 wbuf[0] = port->id; in slim_connect_port_channel()
138 wbuf[1] = port->ch.id; in slim_connect_port_channel()
149 u8 wbuf[1]; in slim_disconnect_port() local
150 struct slim_val_inf msg = {0, 1, NULL, wbuf, NULL}; in slim_disconnect_port()
154 wbuf[0] = port->id; in slim_disconnect_port()
165 u8 wbuf[1]; in slim_deactivate_remove_channel() local
166 struct slim_val_inf msg = {0, 1, NULL, wbuf, NULL}; in slim_deactivate_remove_channel()
171 wbuf[0] = port->ch.id; in slim_deactivate_remove_channel()
276 u8 wbuf[4]; in slim_define_channel_content() local
277 struct slim_val_inf msg = {0, 4, NULL, wbuf, NULL}; in slim_define_channel_content()
281 wbuf[0] = port->ch.id; in slim_define_channel_content()
282 wbuf[1] = port->ch.prrate; in slim_define_channel_content()
286 wbuf[1] |= SLIM_CHANNEL_CONTENT_FL; in slim_define_channel_content()
288 wbuf[2] = port->ch.data_fmt | (port->ch.aux_fmt << 4); in slim_define_channel_content()
289 wbuf[3] = stream->bps/SLIM_SLOT_LEN_BITS; in slim_define_channel_content()
311 u8 wbuf[4]; in slim_define_channel() local
312 struct slim_val_inf msg = {0, 4, NULL, wbuf, NULL}; in slim_define_channel()
318 wbuf[0] = port->ch.id; in slim_define_channel()
319 wbuf[1] = port->ch.seg_dist & 0xFF; in slim_define_channel()
320 wbuf[2] = (stream->prot << 4) | ((port->ch.seg_dist & 0xF00) >> 8); in slim_define_channel()
322 wbuf[3] = stream->bps/SLIM_SLOT_LEN_BITS; in slim_define_channel()
324 wbuf[3] = stream->bps/SLIM_SLOT_LEN_BITS + 1; in slim_define_channel()
335 u8 wbuf[1]; in slim_activate_channel() local
336 struct slim_val_inf msg = {0, 1, NULL, wbuf, NULL}; in slim_activate_channel()
341 txn.msg->wbuf = wbuf; in slim_activate_channel()
342 wbuf[0] = port->ch.id; in slim_activate_channel()