Home
last modified time | relevance | path

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

/linux-3.4.99/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 IRDA_DEBUG(4, "%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-3.4.99/include/net/irda/
Dqos.h98 #define irlap_xbofs_in_usec(speed, xbofs) ( \ argument
99 xbofs * 10000000 / speed \
Dirda_device.h146 __u16 xbofs; /* Number of xbofs required, used by SIR mode */ member
270 return (cb->magic == LAP_MAGIC) ? cb->xbofs : 10; in irda_get_xbofs()
/linux-3.4.99/drivers/net/irda/
Dirda-usb.c167 self->new_xbofs = self->xbofs ; in irda_usb_build_header()
232 self->xbofs = self->new_xbofs; in irda_usb_build_header()
236 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()
599 (self->new_xbofs != self->xbofs)) { in write_bulk_callback()
686 self->new_xbofs = self->xbofs; in irda_usb_net_timeout()
1196 self->xbofs = -1; in irda_usb_net_open()
Ddonauboe.c633 int xbofs; in toshoboe_makemttpacket() local
635 xbofs = ((int) (mtt/100)) * (int) (self->speed); in toshoboe_makemttpacket()
636 xbofs=xbofs/80000; /*Eight bits per byte, and mtt is in us*/ in toshoboe_makemttpacket()
637 xbofs++; in toshoboe_makemttpacket()
641 , xbofs,mtt,self->speed); in toshoboe_makemttpacket()
643 if (xbofs > TX_LEN) in toshoboe_makemttpacket()
646 xbofs, TX_LEN); in toshoboe_makemttpacket()
647 xbofs = TX_LEN; in toshoboe_makemttpacket()
651 memset (buf, XBOF, xbofs); in toshoboe_makemttpacket()
653 return xbofs; in toshoboe_makemttpacket()
Dirda-usb.h165 __u16 xbofs; /* Current xbofs setting */ member