Home | History | Annotate | Download | only in net

Lines Matching defs:fid

282  * Prepare BAP for access.  Assigns FID and RID, sets offset register
287 * id FID or RID, destined for the select register (host order)
288 * offset An _even_ offset into the buffer for the given FID/RID.
302 /* Write fid/rid and offset */
329 * id FID or RID, destined for the select register (host order)
330 * offset An _even_ offset into the buffer for the given FID/RID.
368 * id FID or RID, destined for the select register (host order)
369 * offset An _even_ offset into the buffer for the given FID/RID.
620 /* Get RX FID */
663 UINT16 fid;
667 // Request FID allocation
670 printf("hfa384x: Tx FID allocate command failed: Aborting transmit..\n");
673 if ( !hfa384x_wait_for_event(hw, HFA384x_EVSTAT_ALLOC, HFA384x_EVACK_INFO, 10, 50, "Tx FID to be allocated\n" ) ) return;
674 fid = hfa384x_getreg(hw, HFA384x_ALLOCFID);
691 /* Copy txdesc, p80211hdr and payload parts to FID */
692 result = hfa384x_copy_to_bap(hw, fid, 0, &txdesc, sizeof(txdesc));
694 result = hfa384x_copy_to_bap( hw, fid, sizeof(txdesc), &p80211hdr, sizeof(p80211hdr) );
696 result = hfa384x_copy_to_bap( hw, fid, sizeof(txdesc) + sizeof(p80211hdr), (UINT8*)p, s );
700 result = hfa384x_docmd_wait(hw, HFA384x_CMD_CMDCODE_SET(HFA384x_CMDCODE_TX), fid, 0, 0);
711 fid = hfa384x_getreg(hw, HFA384x_TXCOMPLFID);
712 printf ( "Tx exception occurred with fid %#hx\n", fid );
713 result = hfa384x_copy_from_bap(hw, fid, 0, &status, sizeof(status));