Lines Matching full:wbuf

127 	u8 wbuf[2];  in slim_connect_port_channel()  local
128 struct slim_val_inf msg = {0, 2, NULL, wbuf, NULL}; in slim_connect_port_channel()
135 wbuf[0] = port->id; in slim_connect_port_channel()
136 wbuf[1] = port->ch.id; in slim_connect_port_channel()
147 u8 wbuf[1]; in slim_disconnect_port() local
148 struct slim_val_inf msg = {0, 1, NULL, wbuf, NULL}; in slim_disconnect_port()
152 wbuf[0] = port->id; in slim_disconnect_port()
163 u8 wbuf[1]; in slim_deactivate_remove_channel() local
164 struct slim_val_inf msg = {0, 1, NULL, wbuf, NULL}; in slim_deactivate_remove_channel()
169 wbuf[0] = port->ch.id; in slim_deactivate_remove_channel()
274 u8 wbuf[4]; in slim_define_channel_content() local
275 struct slim_val_inf msg = {0, 4, NULL, wbuf, NULL}; in slim_define_channel_content()
279 wbuf[0] = port->ch.id; in slim_define_channel_content()
280 wbuf[1] = port->ch.prrate; in slim_define_channel_content()
284 wbuf[1] |= SLIM_CHANNEL_CONTENT_FL; in slim_define_channel_content()
286 wbuf[2] = port->ch.data_fmt | (port->ch.aux_fmt << 4); in slim_define_channel_content()
287 wbuf[3] = stream->bps/SLIM_SLOT_LEN_BITS; in slim_define_channel_content()
309 u8 wbuf[4]; in slim_define_channel() local
310 struct slim_val_inf msg = {0, 4, NULL, wbuf, NULL}; in slim_define_channel()
316 wbuf[0] = port->ch.id; in slim_define_channel()
317 wbuf[1] = port->ch.seg_dist & 0xFF; in slim_define_channel()
318 wbuf[2] = (stream->prot << 4) | ((port->ch.seg_dist & 0xF00) >> 8); in slim_define_channel()
320 wbuf[3] = stream->bps/SLIM_SLOT_LEN_BITS; in slim_define_channel()
322 wbuf[3] = stream->bps/SLIM_SLOT_LEN_BITS + 1; in slim_define_channel()
333 u8 wbuf[1]; in slim_activate_channel() local
334 struct slim_val_inf msg = {0, 1, NULL, wbuf, NULL}; in slim_activate_channel()
339 txn.msg->wbuf = wbuf; in slim_activate_channel()
340 wbuf[0] = port->ch.id; in slim_activate_channel()