Home
last modified time | relevance | path

Searched refs:xbofs (Results 1 – 7 of 7) sorted by relevance

/linux-4.1.27/net/irda/
Dwrapper.c86 int xbofs; in async_wrap_skb() local
110 xbofs = 10; in async_wrap_skb()
112 xbofs = cb->xbofs + cb->xbofs_delay; in async_wrap_skb()
114 pr_debug("%s(), xbofs=%d\n", __func__, xbofs); in async_wrap_skb()
117 if (xbofs > 163) { in async_wrap_skb()
119 xbofs); in async_wrap_skb()
120 xbofs = 163; in async_wrap_skb()
123 memset(tx_buff + n, XBOF, xbofs); in async_wrap_skb()
124 n += xbofs; in async_wrap_skb()
Dirlap_frame.c77 cb->xbofs = self->bofs_count; in irlap_insert_info()
/linux-4.1.27/include/net/irda/
Dqos.h96 #define irlap_xbofs_in_usec(speed, xbofs) ( \ argument
97 xbofs * 10000000 / speed \
Dirda_device.h144 __u16 xbofs; /* Number of xbofs required, used by SIR mode */ member
268 return (cb->magic == LAP_MAGIC) ? cb->xbofs : 10; in irda_get_xbofs()
/linux-4.1.27/drivers/net/irda/
Dirda-usb.c166 self->new_xbofs = self->xbofs ; in irda_usb_build_header()
233 self->xbofs = self->new_xbofs; in irda_usb_build_header()
237 switch (self->xbofs) { in irda_usb_build_header()
392 s16 xbofs; in irda_usb_hard_xmit() local
411 xbofs = irda_get_next_xbofs(skb); in irda_usb_hard_xmit()
412 if ((xbofs != self->xbofs) && (xbofs != -1)) { in irda_usb_hard_xmit()
413 self->new_xbofs = xbofs; in irda_usb_hard_xmit()
592 (self->new_xbofs != self->xbofs)) { in write_bulk_callback()
681 self->new_xbofs = self->xbofs; in irda_usb_net_timeout()
1186 self->xbofs = -1; in irda_usb_net_open()
Ddonauboe.c622 int xbofs; in toshoboe_makemttpacket() local
624 xbofs = ((int) (mtt/100)) * (int) (self->speed); in toshoboe_makemttpacket()
625 xbofs=xbofs/80000; /*Eight bits per byte, and mtt is in us*/ in toshoboe_makemttpacket()
626 xbofs++; in toshoboe_makemttpacket()
629 xbofs, mtt, self->speed); in toshoboe_makemttpacket()
631 if (xbofs > TX_LEN) in toshoboe_makemttpacket()
634 xbofs, TX_LEN); in toshoboe_makemttpacket()
635 xbofs = TX_LEN; in toshoboe_makemttpacket()
639 memset (buf, XBOF, xbofs); in toshoboe_makemttpacket()
641 return xbofs; in toshoboe_makemttpacket()
Dirda-usb.h164 __u16 xbofs; /* Current xbofs setting */ member