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()
516 unsigned char rcs0, unsigned char rcs1, in ak4114_notify() argument
528 if (rcs1 & AK4114_CCRC) in ak4114_notify()
531 if (rcs1 & AK4114_QCRC) in ak4114_notify()
563 unsigned char rcs1; in snd_ak4114_external_rate() local
565 rcs1 = reg_read(ak4114, AK4114_REG_RCS1); in snd_ak4114_external_rate()
566 return external_rate(rcs1); in snd_ak4114_external_rate()
575 unsigned char rcs0, rcs1; in snd_ak4114_check_rate_and_errors() local
578 rcs1 = reg_read(ak4114, AK4114_REG_RCS1); in snd_ak4114_check_rate_and_errors()
585 if (rcs1 & AK4114_V) in snd_ak4114_check_rate_and_errors()
587 if (rcs1 & AK4114_CCRC) in snd_ak4114_check_rate_and_errors()
589 if (rcs1 & AK4114_QCRC) in snd_ak4114_check_rate_and_errors()
593 c1 = (ak4114->rcs1 & 0xf0) ^ (rcs1 & 0xf0); in snd_ak4114_check_rate_and_errors()
595 ak4114->rcs1 = rcs1; in snd_ak4114_check_rate_and_errors()
598 ak4114_notify(ak4114, rcs0, rcs1, c0, c1); in snd_ak4114_check_rate_and_errors()
604 res = external_rate(rcs1); in snd_ak4114_check_rate_and_errors()