Home
last modified time | relevance | path

Searched refs:DVB_RINGBUFFER_WRITE_BYTE (Results 1 – 3 of 3) sorted by relevance

/openbmc/linux/drivers/staging/media/av7110/
H A Dav7110_ca.c63 DVB_RINGBUFFER_WRITE_BYTE(cibuf, len >> 8); in ci_get_data()
64 DVB_RINGBUFFER_WRITE_BYTE(cibuf, len & 0xff); in ci_get_data()
163 DVB_RINGBUFFER_WRITE_BYTE(cibuf, count >> 8); in ci_ll_write()
164 DVB_RINGBUFFER_WRITE_BYTE(cibuf, count & 0xff); in ci_ll_write()
/openbmc/linux/drivers/media/dvb-core/
H A Ddvb_ringbuffer.c243 DVB_RINGBUFFER_WRITE_BYTE(rbuf, len >> 8); in dvb_ringbuffer_pkt_write()
244 DVB_RINGBUFFER_WRITE_BYTE(rbuf, len & 0xff); in dvb_ringbuffer_pkt_write()
245 DVB_RINGBUFFER_WRITE_BYTE(rbuf, PKT_READY); in dvb_ringbuffer_pkt_write()
/openbmc/linux/include/media/
H A Ddvb_ringbuffer.h177 #define DVB_RINGBUFFER_WRITE_BYTE(rbuf, byte) \ macro