Searched refs:xbofs (Results 1 – 8 of 8) sorted by relevance
/linux-2.4.37.9/net/irda/ |
D | wrapper.c | 97 int xbofs; in async_wrap_skb() local 121 xbofs = 10; in async_wrap_skb() 123 xbofs = cb->xbofs + cb->xbofs_delay; in async_wrap_skb() 125 IRDA_DEBUG(4, "%s(), xbofs=%d\n", __FUNCTION__, xbofs); in async_wrap_skb() 128 if (xbofs > 163) { in async_wrap_skb() 129 IRDA_DEBUG(0, "%s(), too many xbofs (%d)\n", __FUNCTION__, xbofs); in async_wrap_skb() 130 xbofs = 163; in async_wrap_skb() 133 memset(tx_buff+n, XBOF, xbofs); in async_wrap_skb() 134 n += xbofs; in async_wrap_skb()
|
D | irlap_frame.c | 73 cb->xbofs = self->bofs_count; in irlap_insert_info()
|
/linux-2.4.37.9/include/net/irda/ |
D | qos.h | 106 #define irlap_xbofs_in_usec(speed, xbofs) ( \ argument 107 xbofs * 10000000 / speed \
|
D | irda-usb.h | 159 __u16 xbofs; /* Current xbofs setting */ member
|
D | irda.h | 190 __u16 xbofs; /* Number of xbofs required, used by SIR mode */ member
|
D | irda_device.h | 255 ((struct irda_skb_cb *)(skb->cb))->xbofs : 10 \
|
/linux-2.4.37.9/drivers/net/irda/ |
D | irda-usb.c | 211 self->xbofs = self->new_xbofs; in irda_usb_build_header() 215 switch (self->xbofs) { in irda_usb_build_header() 338 s16 xbofs; in irda_usb_hard_xmit() local 358 xbofs = irda_get_next_xbofs(skb); in irda_usb_hard_xmit() 359 if ((xbofs != self->xbofs) && (xbofs != -1)) { in irda_usb_hard_xmit() 360 self->new_xbofs = xbofs; in irda_usb_hard_xmit() 542 (self->new_xbofs != self->xbofs)) { in write_bulk_callback() 631 self->new_xbofs = self->xbofs; in irda_usb_net_timeout() 950 self->xbofs = -1; in irda_usb_net_open()
|
D | donauboe.c | 679 int xbofs; in toshoboe_makemttpacket() local 681 xbofs = ((int) (mtt/100)) * (int) (self->speed); in toshoboe_makemttpacket() 682 xbofs=xbofs/80000; /*Eight bits per byte, and mtt is in us*/ in toshoboe_makemttpacket() 683 xbofs++; in toshoboe_makemttpacket() 687 , xbofs,mtt,self->speed); in toshoboe_makemttpacket() 689 if (xbofs > TX_LEN) in toshoboe_makemttpacket() 692 xbofs, TX_LEN); in toshoboe_makemttpacket() 693 xbofs = TX_LEN; in toshoboe_makemttpacket() 697 memset (buf, XBOF, xbofs); in toshoboe_makemttpacket() 699 return xbofs; in toshoboe_makemttpacket()
|