Lines Matching defs:slot
555 int slot, slot_num;
560 /* scan rx_mask for aud slot */
561 slot = ffs(rx_mask) - 1;
562 if (slot >= 0) {
564 CS35L33_X_LOC, slot);
565 dev_dbg(component->dev, "Audio starts from slots %d", slot);
570 * vpmon (1 slot) vbstmon (1 slot)
572 slot = ffs(tx_mask) - 1;
586 while (slot >= 0) {
590 CS35L33_X_STATE | CS35L33_X_LOC, slot);
592 slot, slot + 1);
598 CS35L33_X_STATE | CS35L33_X_LOC, slot);
600 slot, slot + 1);
606 CS35L33_X_STATE | CS35L33_X_LOC, slot);
609 dev_dbg(component->dev, "VPMON enabled in slots %d", slot);
615 CS35L33_X_STATE | CS35L33_X_LOC, slot);
619 "VBSTMON enabled in slots %d", slot);
622 /* Enable the relevant tx slot */
623 reg = CS35L33_TX_EN4 - (slot/8);
624 bit_pos = slot - ((slot / 8) * (8));
628 tx_mask &= ~(1 << slot);
629 slot = ffs(tx_mask) - 1;