Searched refs:temp_int (Results 1 - 4 of 4) sorted by relevance
/linux-4.1.27/drivers/media/pci/cx23885/ |
H A D | altera-ci.c | 162 static struct fpga_internal *check_filter(struct fpga_internal *temp_int, check_filter() argument 165 if (temp_int == NULL) check_filter() 168 if ((temp_int->pid_filt[filt_nr]) == NULL) check_filter() 171 if (temp_int->pid_filt[filt_nr]->demux == demux_dev) check_filter() 172 return temp_int; check_filter() 181 struct fpga_internal *temp_int; find_dinode() local 189 temp_int = temp_chip->internal; find_dinode() 190 if (check_filter(temp_int, demux_dev, 0)) find_dinode() 192 if (check_filter(temp_int, demux_dev, 1)) find_dinode() 431 struct fpga_inode *temp_int = NULL; altera_ci_irq() local 437 temp_int = find_inode(dev); altera_ci_irq() 438 if (temp_int != NULL) { altera_ci_irq() 439 inter = temp_int->internal; altera_ci_irq() 461 struct fpga_inode *temp_int = find_inode(main_dev); altera_hw_filt_release() local 466 if (temp_int != NULL) { altera_hw_filt_release() 467 pid_filt = temp_int->internal->pid_filt[filt_nr - 1]; altera_hw_filt_release() 472 if (((--(temp_int->internal->filts_used)) <= 0) && altera_hw_filt_release() 473 ((temp_int->internal->cis_used) <= 0)) { altera_hw_filt_release() 477 remove_inode(temp_int->internal); altera_hw_filt_release() 489 struct fpga_inode *temp_int = find_inode(dev); altera_ci_release() local 494 if (temp_int != NULL) { altera_ci_release() 495 state = temp_int->internal->state[ci_nr - 1]; altera_ci_release() 499 if (((temp_int->internal->filts_used) <= 0) && altera_ci_release() 500 ((--(temp_int->internal->cis_used)) <= 0)) { altera_ci_release() 504 remove_inode(temp_int->internal); altera_ci_release() 583 struct fpga_inode *temp_int = find_dinode(demux_dev); altera_pid_feed_control() local 584 struct fpga_internal *inter = temp_int->internal; altera_pid_feed_control() 638 struct fpga_inode *temp_int = find_inode(config->dev); altera_hw_filt_init() local 651 if (temp_int != NULL) { altera_hw_filt_init() 652 inter = temp_int->internal; altera_hw_filt_init() 662 temp_int = append_internal(inter); altera_hw_filt_init() 704 struct fpga_inode *temp_int = find_inode(config->dev); altera_ci_init() local 718 if (temp_int != NULL) { altera_ci_init() 719 inter = temp_int->internal; altera_ci_init() 730 temp_int = append_internal(inter); altera_ci_init() 806 struct fpga_inode *temp_int = find_inode(dev); altera_ci_tuner_reset() local 812 if (temp_int == NULL) altera_ci_tuner_reset() 815 if (temp_int->internal == NULL) altera_ci_tuner_reset() 818 inter = temp_int->internal; altera_ci_tuner_reset()
|
/linux-4.1.27/drivers/iio/humidity/ |
H A D | dht11.c | 94 unsigned char temp_int, temp_dec, hum_int, hum_dec, checksum; dht11_decode() local 122 temp_int = dht11_decode_byte(&timing[16], threshold); dht11_decode() 126 if (((hum_int + hum_dec + temp_int + temp_dec) & 0xff) != checksum) dht11_decode() 131 dht11->temperature = (((temp_int & 0x7f) << 8) + temp_dec) * dht11_decode() 132 ((temp_int & 0x80) ? -100 : 100); dht11_decode() 135 dht11->temperature = temp_int * 1000; dht11_decode() 140 hum_int, hum_dec, temp_int, temp_dec); dht11_decode()
|
/linux-4.1.27/drivers/media/dvb-frontends/ |
H A D | stv0900_core.c | 1351 struct stv0900_inode *temp_int = find_inode(state->i2c_adap, stv0900_init_internal() local 1356 if ((temp_int != NULL) && (p_init->demod_mode == STV0900_DUAL)) { stv0900_init_internal() 1357 state->internal = temp_int->internal; stv0900_init_internal() 1366 temp_int = append_internal(state->internal); stv0900_init_internal() 1367 if (temp_int == NULL) { stv0900_init_internal()
|
H A D | stv090x.c | 4928 struct stv090x_dev *temp_int; stv090x_attach() local 4944 temp_int = find_dev(state->i2c, stv090x_attach() 4947 if ((temp_int != NULL) && (state->demod_mode == STV090x_DUAL)) { stv090x_attach() 4948 state->internal = temp_int->internal; stv090x_attach() 4956 temp_int = append_internal(state->internal); stv090x_attach() 4957 if (!temp_int) { stv090x_attach()
|
Completed in 173 milliseconds