Lines Matching refs: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()
267 u8 wbuf[4]; in slim_define_channel_content() local
268 struct slim_val_inf msg = {0, 4, NULL, wbuf, NULL}; in slim_define_channel_content()
272 wbuf[0] = port->ch.id; in slim_define_channel_content()
273 wbuf[1] = port->ch.prrate; in slim_define_channel_content()
277 wbuf[1] |= SLIM_CHANNEL_CONTENT_FL; in slim_define_channel_content()
279 wbuf[2] = port->ch.data_fmt | (port->ch.aux_fmt << 4); in slim_define_channel_content()
280 wbuf[3] = stream->bps/SLIM_SLOT_LEN_BITS; in slim_define_channel_content()
302 u8 wbuf[4]; in slim_define_channel() local
303 struct slim_val_inf msg = {0, 4, NULL, wbuf, NULL}; in slim_define_channel()
309 wbuf[0] = port->ch.id; in slim_define_channel()
310 wbuf[1] = port->ch.seg_dist & 0xFF; in slim_define_channel()
311 wbuf[2] = (stream->prot << 4) | ((port->ch.seg_dist & 0xF00) >> 8); in slim_define_channel()
313 wbuf[3] = stream->bps/SLIM_SLOT_LEN_BITS; in slim_define_channel()
315 wbuf[3] = stream->bps/SLIM_SLOT_LEN_BITS + 1; in slim_define_channel()
326 u8 wbuf[1]; in slim_activate_channel() local
327 struct slim_val_inf msg = {0, 1, NULL, wbuf, NULL}; in slim_activate_channel()
332 txn.msg->wbuf = wbuf; in slim_activate_channel()
333 wbuf[0] = port->ch.id; in slim_activate_channel()