Home
last modified time | relevance | path

Searched refs:uv_offset (Results 1 – 2 of 2) sorted by relevance

/linux/drivers/hwmon/
H A Dlm93.c383 const long uv_offset = upper ? (((reg >> 4 & 0x0f) + 1) * 12500) : in LM93_IN_REL_FROM_REG() local
386 return (uv_vid + uv_offset + 5000) / 10000; in LM93_IN_REL_FROM_REG()
399 long uv_offset = vid * 1000 - val * 10000; in LM93_IN_REL_TO_REG() local
401 uv_offset = clamp_val(uv_offset, 12500, 200000); in LM93_IN_REL_TO_REG()
402 return (u8)((uv_offset / 12500 - 1) << 4); in LM93_IN_REL_TO_REG()
404 uv_offset = clamp_val(uv_offset, -400000, -25000); in LM93_IN_REL_TO_REG()
405 return (u8)((uv_offset / -25000 - 1) << 0); in LM93_IN_REL_TO_REG()
/linux/drivers/media/pci/ivtv/
H A Divtv-irq.c345 u32 uv_offset = offset + IVTV_YUV_BUFFER_UV_OFFSET; in ivtv_dma_stream_dec_prepare() local
370 offset = uv_offset; in ivtv_dma_stream_dec_prepare()