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

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/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", __func__, 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", __func__,
119 xbofs);
[all...]
H A Dirlap_frame.c77 cb->xbofs = self->bofs_count;
83 /* Put the correct xbofs value for the next packet */
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/net/irda/
H A Dqos.h98 #define irlap_xbofs_in_usec(speed, xbofs) ( \
99 xbofs * 10000000 / speed \
H A Dirda_device.h146 __u16 xbofs; /* Number of xbofs required, used by SIR mode */ member in struct:irda_skb_cb
147 __u16 next_xbofs; /* Number of xbofs required *after* this frame */
150 __u16 xbofs_delay; /* Number of xbofs used for generating the mtt */
263 * Extract the xbofs that should be set for this frame from the skb
270 return (cb->magic == LAP_MAGIC) ? cb->xbofs : 10;
276 * Extract the xbofs that should be set *after* this frame from the skb
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/irda/
H A Dirda-usb.h105 #define IUC_MAX_XBOFS 0x40 /* Device need more xbofs than advertised */
164 __u16 xbofs; /* Current xbofs setting */ member in struct:irda_usb_cb
165 __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", __func__, self->new_xbofs);
232 self->xbofs = self->new_xbofs;
236 switch (self->xbofs) {
305 IRDA_DEBUG(2, "%s(), speed=%d, xbofs=%d\n", __func__,
318 /* Set the new speed and xbofs in this fake frame */
392 s16 xbofs; local
410 /* Check if we need to change the number of xbofs */
[all...]
H A Ddonauboe.c633 int xbofs; local
635 xbofs = ((int) (mtt/100)) * (int) (self->speed);
636 xbofs=xbofs/80000; /*Eight bits per byte, and mtt is in us*/
637 xbofs++;
641 , xbofs,mtt,self->speed);
643 if (xbofs > TX_LEN)
646 xbofs, TX_LEN);
647 xbofs = TX_LEN;
650 /*xbofs wil
[all...]

Completed in 56 milliseconds