Home
last modified time | relevance | path

Searched refs:comp_temp (Results 1 – 4 of 4) sorted by relevance

/linux/drivers/dma/
H A Dfsl-qdma.c317 struct fsl_qdma_comp *comp_temp, *_comp_temp; in fsl_qdma_free_chan_resources() local
330 list_for_each_entry_safe(comp_temp, _comp_temp, in fsl_qdma_free_chan_resources()
333 comp_temp->virt_addr, in fsl_qdma_free_chan_resources()
334 comp_temp->bus_addr); in fsl_qdma_free_chan_resources()
336 comp_temp->desc_virt_addr, in fsl_qdma_free_chan_resources()
337 comp_temp->desc_bus_addr); in fsl_qdma_free_chan_resources()
338 list_del(&comp_temp->list); in fsl_qdma_free_chan_resources()
339 kfree(comp_temp); in fsl_qdma_free_chan_resources()
342 list_for_each_entry_safe(comp_temp, _comp_temp, in fsl_qdma_free_chan_resources()
345 comp_temp->virt_addr, in fsl_qdma_free_chan_resources()
[all …]
/linux/drivers/dma/fsl-dpaa2-qdma/
H A Ddpaa2-qdma.c96 struct dpaa2_qdma_comp *comp_temp = NULL; in dpaa2_qdma_request_desc() local
102 comp_temp = kzalloc_obj(*comp_temp, GFP_NOWAIT); in dpaa2_qdma_request_desc()
103 if (!comp_temp) in dpaa2_qdma_request_desc()
105 comp_temp->fd_virt_addr = in dpaa2_qdma_request_desc()
107 &comp_temp->fd_bus_addr); in dpaa2_qdma_request_desc()
108 if (!comp_temp->fd_virt_addr) in dpaa2_qdma_request_desc()
111 comp_temp->fl_virt_addr = in dpaa2_qdma_request_desc()
113 &comp_temp->fl_bus_addr); in dpaa2_qdma_request_desc()
114 if (!comp_temp->fl_virt_addr) in dpaa2_qdma_request_desc()
117 comp_temp->desc_virt_addr = in dpaa2_qdma_request_desc()
[all …]
/linux/drivers/iio/pressure/
H A Dbmp280-core.c563 static int bmp280_read_temp(struct bmp280_data *data, s32 *comp_temp) in bmp280_read_temp() argument
572 *comp_temp = bmp280_compensate_temp(data, adc_temp); in bmp280_read_temp()
1114 s32 comp_temp; in bmp280_trigger_handler() member
1136 buffer.comp_temp = bmp280_compensate_temp(data, adc_temp); in bmp280_trigger_handler()
1235 s32 comp_temp; in bme280_trigger_handler() member
1258 buffer.comp_temp = bmp280_compensate_temp(data, adc_temp); in bme280_trigger_handler()
1496 s64 comp_temp; in bmp380_compensate_temp() local
1500 comp_temp = (var6 * 25) >> 14; in bmp380_compensate_temp()
1502 comp_temp = clamp_val(comp_temp, BMP380_MIN_TEMP, BMP380_MAX_TEMP); in bmp380_compensate_temp()
1503 return (s32) comp_temp; in bmp380_compensate_temp()
[all …]
/linux/drivers/iio/chemical/
H A Dbme680_core.c737 static int bme680_read_temp(struct bme680_data *data, s16 *comp_temp) in bme680_read_temp() argument
746 *comp_temp = bme680_compensate_temp(data, adc_temp); in bme680_read_temp()