Lines Matching refs:rcs1
113 chip->rcs1 = reg_read(chip, AK4114_REG_RCS1); in snd_ak4114_create()
169 static unsigned int external_rate(unsigned char rcs1) in external_rate() argument
171 switch (rcs1 & (AK4114_FS0|AK4114_FS1|AK4114_FS2|AK4114_FS3)) { in external_rate()
515 unsigned char rcs0, unsigned char rcs1, in ak4114_notify() argument
527 if (rcs1 & AK4114_CCRC) in ak4114_notify()
530 if (rcs1 & AK4114_QCRC) in ak4114_notify()
562 unsigned char rcs1; in snd_ak4114_external_rate() local
564 rcs1 = reg_read(ak4114, AK4114_REG_RCS1); in snd_ak4114_external_rate()
565 return external_rate(rcs1); in snd_ak4114_external_rate()
574 unsigned char rcs0, rcs1; in snd_ak4114_check_rate_and_errors() local
577 rcs1 = reg_read(ak4114, AK4114_REG_RCS1); in snd_ak4114_check_rate_and_errors()
584 if (rcs1 & AK4114_V) in snd_ak4114_check_rate_and_errors()
586 if (rcs1 & AK4114_CCRC) in snd_ak4114_check_rate_and_errors()
588 if (rcs1 & AK4114_QCRC) in snd_ak4114_check_rate_and_errors()
592 c1 = (ak4114->rcs1 & 0xf0) ^ (rcs1 & 0xf0); in snd_ak4114_check_rate_and_errors()
594 ak4114->rcs1 = rcs1; in snd_ak4114_check_rate_and_errors()
597 ak4114_notify(ak4114, rcs0, rcs1, c0, c1); in snd_ak4114_check_rate_and_errors()
603 res = external_rate(rcs1); in snd_ak4114_check_rate_and_errors()