Lines Matching refs:status
855 int status; in query_lock() local
860 regmap_read(decoder->regmap, TVP5150_STATUS_REG_1, &status); in query_lock()
863 return (status & 0x0e) == 0x0e; in query_lock()
882 unsigned int mask, active = 0, status = 0; in tvp5150_isr() local
887 regmap_read(map, TVP5150_INT_STATUS_REG_A, &status); in tvp5150_isr()
888 if (status) { in tvp5150_isr()
889 regmap_write(map, TVP5150_INT_STATUS_REG_A, status); in tvp5150_isr()
891 if (status & TVP5150_INT_A_LOCK) { in tvp5150_isr()
892 decoder->lock = !!(status & TVP5150_INT_A_LOCK_STATUS); in tvp5150_isr()
906 status = 0; in tvp5150_isr()
907 regmap_read(map, TVP5150_INT_STATUS_REG_B, &status); in tvp5150_isr()
908 if (status) in tvp5150_isr()
909 regmap_write(map, TVP5150_INT_RESET_REG_B, status); in tvp5150_isr()
1598 int status = tvp5150_read(sd, 0x88); in tvp5150_g_tuner() local
1600 vt->signal = ((status & 0x04) && (status & 0x02)) ? 0xffff : 0x0; in tvp5150_g_tuner()