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

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/irda/
H A Dwrapper.c86 int xbofs; local
110 xbofs = 10;
112 xbofs = cb->xbofs + cb->xbofs_delay;
114 IRDA_DEBUG(4, "%s(), xbofs=%d\n", __FUNCTION__, xbofs);
116 /* Check that we never use more than 115 + 48 xbofs */
117 if (xbofs > 163) {
118 IRDA_DEBUG(0, "%s(), too many xbofs (%d)\n", __FUNCTION__,
119 xbofs);
[all...]
H A Dirlap_frame.c76 cb->xbofs = self->bofs_count;
82 /* Put the correct xbofs value for the next packet */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/net/irda/
H A Dqos.h98 #define irlap_xbofs_in_usec(speed, xbofs) ( \
99 xbofs * 10000000 / speed \
H A Dirda_device.h144 __u16 xbofs; /* Number of xbofs required, used by SIR mode */ member in struct:irda_skb_cb
145 __u16 next_xbofs; /* Number of xbofs required *after* this frame */
148 __u16 xbofs_delay; /* Number of xbofs used for generating the mtt */
274 * Extract the xbofs that should be set for this frame from the skb
281 return (cb->magic == LAP_MAGIC) ? cb->xbofs : 10;
287 * Extract the xbofs that should be set *after* this frame from the skb
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/irda/
H A Dirda-usb.h105 #define IUC_MAX_XBOFS 0x40 /* Device need more xbofs than advertised */
165 __u16 xbofs; /* Current xbofs setting */ member in struct:irda_usb_cb
166 __s16 new_xbofs; /* xbofs we need to set */
H A Dirda-usb.c154 * and if either speed or xbofs (or both) needs
167 self->new_xbofs = self->xbofs ;
178 /* No speed and xbofs change here
231 IRDA_DEBUG(2, "%s(), changing xbofs to %d\n", __FUNCTION__, self->new_xbofs);
232 self->xbofs = self->new_xbofs;
236 switch (self->xbofs) {
305 IRDA_DEBUG(2, "%s(), speed=%d, xbofs=%d\n", __FUNCTION__,
318 /* Set the new speed and xbofs in this fake frame */
391 s16 xbofs; local
410 /* Check if we need to change the number of xbofs */
[all...]
H A Ddonauboe.c637 int xbofs; local
639 xbofs = ((int) (mtt/100)) * (int) (self->speed);
640 xbofs=xbofs/80000; /*Eight bits per byte, and mtt is in us*/
641 xbofs++;
645 , xbofs,mtt,self->speed);
647 if (xbofs > TX_LEN)
650 xbofs, TX_LEN);
651 xbofs = TX_LEN;
654 /*xbofs wil
[all...]

Completed in 79 milliseconds