Lines Matching refs:rcs1
98 chip->rcs1 = reg_read(chip, AK4114_REG_RCS1); in snd_ak4114_create()
154 static unsigned int external_rate(unsigned char rcs1) in external_rate() argument
156 switch (rcs1 & (AK4114_FS0|AK4114_FS1|AK4114_FS2|AK4114_FS3)) { in external_rate()
499 unsigned char rcs0, unsigned char rcs1, in ak4114_notify() argument
511 if (rcs1 & AK4114_CCRC) in ak4114_notify()
514 if (rcs1 & AK4114_QCRC) in ak4114_notify()
546 unsigned char rcs1; in snd_ak4114_external_rate() local
548 rcs1 = reg_read(ak4114, AK4114_REG_RCS1); in snd_ak4114_external_rate()
549 return external_rate(rcs1); in snd_ak4114_external_rate()
558 unsigned char rcs0, rcs1; in snd_ak4114_check_rate_and_errors() local
561 rcs1 = reg_read(ak4114, AK4114_REG_RCS1); in snd_ak4114_check_rate_and_errors()
568 if (rcs1 & AK4114_V) in snd_ak4114_check_rate_and_errors()
570 if (rcs1 & AK4114_CCRC) in snd_ak4114_check_rate_and_errors()
572 if (rcs1 & AK4114_QCRC) in snd_ak4114_check_rate_and_errors()
576 c1 = (ak4114->rcs1 & 0xf0) ^ (rcs1 & 0xf0); in snd_ak4114_check_rate_and_errors()
578 ak4114->rcs1 = rcs1; in snd_ak4114_check_rate_and_errors()
581 ak4114_notify(ak4114, rcs0, rcs1, c0, c1); in snd_ak4114_check_rate_and_errors()
587 res = external_rate(rcs1); in snd_ak4114_check_rate_and_errors()