Searched refs:temp_int (Results 1 – 4 of 4) sorted by relevance
/drivers/media/pci/cx23885/ |
D | altera-ci.c | 162 static struct fpga_internal *check_filter(struct fpga_internal *temp_int, in check_filter() argument 165 if (temp_int == NULL) in check_filter() 168 if ((temp_int->pid_filt[filt_nr]) == NULL) in check_filter() 171 if (temp_int->pid_filt[filt_nr]->demux == demux_dev) in check_filter() 172 return temp_int; in check_filter() 181 struct fpga_internal *temp_int; in find_dinode() local 189 temp_int = temp_chip->internal; in find_dinode() 190 if (check_filter(temp_int, demux_dev, 0)) in find_dinode() 192 if (check_filter(temp_int, demux_dev, 1)) in find_dinode() 431 struct fpga_inode *temp_int = NULL; in altera_ci_irq() local [all …]
|
/drivers/iio/humidity/ |
D | dht11.c | 136 unsigned char temp_int, temp_dec, hum_int, hum_dec, checksum; in dht11_decode() local 152 temp_int = dht11_decode_byte(&bits[16]); in dht11_decode() 156 if (((hum_int + hum_dec + temp_int + temp_dec) & 0xff) != checksum) { in dht11_decode() 163 dht11->temperature = (((temp_int & 0x7f) << 8) + temp_dec) * in dht11_decode() 164 ((temp_int & 0x80) ? -100 : 100); in dht11_decode() 167 dht11->temperature = temp_int * 1000; in dht11_decode() 172 hum_int, hum_dec, temp_int, temp_dec); in dht11_decode()
|
/drivers/media/dvb-frontends/ |
D | stv0900_core.c | 1354 struct stv0900_inode *temp_int = find_inode(state->i2c_adap, in stv0900_init_internal() local 1359 if ((temp_int != NULL) && (p_init->demod_mode == STV0900_DUAL)) { in stv0900_init_internal() 1360 state->internal = temp_int->internal; in stv0900_init_internal() 1369 temp_int = append_internal(state->internal); in stv0900_init_internal() 1370 if (temp_int == NULL) { in stv0900_init_internal()
|
D | stv090x.c | 4931 struct stv090x_dev *temp_int; in stv090x_attach() local 4947 temp_int = find_dev(state->i2c, in stv090x_attach() 4950 if ((temp_int != NULL) && (state->demod_mode == STV090x_DUAL)) { in stv090x_attach() 4951 state->internal = temp_int->internal; in stv090x_attach() 4959 temp_int = append_internal(state->internal); in stv090x_attach() 4960 if (!temp_int) { in stv090x_attach()
|