Home
last modified time | relevance | path

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

/linux/drivers/media/dvb-frontends/
H A Dmxl5xx.c153 GET_BYTE(reg, 0), GET_BYTE(reg, 1), in read_register_unlocked()
154 GET_BYTE(reg, 2), GET_BYTE(reg, 3), in read_register_unlocked()
226 buf[2] = GET_BYTE(reg, 0); in write_firmware_block()
227 buf[3] = GET_BYTE(reg, 1); in write_firmware_block()
228 buf[4] = GET_BYTE(reg, 2); in write_firmware_block()
229 buf[5] = GET_BYTE(reg, 3); in write_firmware_block()
245 GET_BYTE(reg, 0), GET_BYTE(reg, 1), in read_register()
246 GET_BYTE(reg, 2), GET_BYTE(reg, 3), in read_register()
273 buf[2] = GET_BYTE(reg, 0); in read_register_block()
274 buf[3] = GET_BYTE(reg, 1); in read_register_block()
[all …]
H A Dmxl5xx_defs.h145 #define GET_BYTE(x, n) (((x) >> (8*(n))) & 0xFF) macro