Lines Matching defs:slot
273 int slot, slot_num;
279 /* scan rx_mask for aud slot */
280 slot = ffs(rx_mask) - 1;
281 if (slot >= 0)
283 CS35L34_X_LOC, slot);
285 /* scan tx_mask: vmon(2 slots); imon (2 slots); vpmon (1 slot)
286 * vbstmon (1 slot)
288 slot = ffs(tx_mask) - 1;
300 while (slot >= 0) {
304 CS35L34_X_STATE | CS35L34_X_LOC, slot);
309 CS35L34_X_STATE | CS35L34_X_LOC, slot);
314 CS35L34_X_STATE | CS35L34_X_LOC, slot);
320 CS35L34_X_STATE | CS35L34_X_LOC, slot);
323 /* Enable the relevant tx slot */
324 reg = CS35L34_TDM_TX_SLOT_EN_4 - (slot/8);
325 bit_pos = slot - ((slot / 8) * (8));
329 tx_mask &= ~(1 << slot);
330 slot = ffs(tx_mask) - 1;