Home
last modified time | relevance | path

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

/linux-4.19.296/drivers/media/dvb-frontends/
Dmxl5xx.c163 GET_BYTE(reg, 0), GET_BYTE(reg, 1), in read_register_unlocked()
164 GET_BYTE(reg, 2), GET_BYTE(reg, 3), in read_register_unlocked()
236 buf[2] = GET_BYTE(reg, 0); in write_firmware_block()
237 buf[3] = GET_BYTE(reg, 1); in write_firmware_block()
238 buf[4] = GET_BYTE(reg, 2); in write_firmware_block()
239 buf[5] = GET_BYTE(reg, 3); in write_firmware_block()
255 GET_BYTE(reg, 0), GET_BYTE(reg, 1), in read_register()
256 GET_BYTE(reg, 2), GET_BYTE(reg, 3), in read_register()
283 buf[2] = GET_BYTE(reg, 0); in read_register_block()
284 buf[3] = GET_BYTE(reg, 1); in read_register_block()
[all …]
Dmxl5xx_defs.h148 #define GET_BYTE(x, n) (((x) >> (8*(n))) & 0xFF) macro