Searched refs:temp_int (Results 1 – 4 of 4) sorted by relevance
/linux-4.1.27/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 …]
|
/linux-4.1.27/drivers/iio/humidity/ |
D | dht11.c | 94 unsigned char temp_int, temp_dec, hum_int, hum_dec, checksum; in dht11_decode() local 122 temp_int = dht11_decode_byte(&timing[16], threshold); in dht11_decode() 126 if (((hum_int + hum_dec + temp_int + temp_dec) & 0xff) != checksum) in dht11_decode() 131 dht11->temperature = (((temp_int & 0x7f) << 8) + temp_dec) * in dht11_decode() 132 ((temp_int & 0x80) ? -100 : 100); in dht11_decode() 135 dht11->temperature = temp_int * 1000; in dht11_decode() 140 hum_int, hum_dec, temp_int, temp_dec); in dht11_decode()
|
/linux-4.1.27/drivers/media/dvb-frontends/ |
D | stv0900_core.c | 1351 struct stv0900_inode *temp_int = find_inode(state->i2c_adap, in stv0900_init_internal() local 1356 if ((temp_int != NULL) && (p_init->demod_mode == STV0900_DUAL)) { in stv0900_init_internal() 1357 state->internal = temp_int->internal; in stv0900_init_internal() 1366 temp_int = append_internal(state->internal); in stv0900_init_internal() 1367 if (temp_int == NULL) { in stv0900_init_internal()
|
D | stv090x.c | 4928 struct stv090x_dev *temp_int; in stv090x_attach() local 4944 temp_int = find_dev(state->i2c, in stv090x_attach() 4947 if ((temp_int != NULL) && (state->demod_mode == STV090x_DUAL)) { in stv090x_attach() 4948 state->internal = temp_int->internal; in stv090x_attach() 4956 temp_int = append_internal(state->internal); in stv090x_attach() 4957 if (!temp_int) { in stv090x_attach()
|