• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/staging/wlan-ng/

Lines Matching refs:inf

141 				   hfa384x_InfFrame_t *inf);
143 hfa384x_InfFrame_t *inf);
145 hfa384x_InfFrame_t *inf);
147 hfa384x_InfFrame_t *inf);
149 hfa384x_InfFrame_t *inf);
151 hfa384x_InfFrame_t *inf);
153 hfa384x_InfFrame_t *inf);
155 hfa384x_InfFrame_t *inf);
157 hfa384x_InfFrame_t *inf);
159 hfa384x_InfFrame_t *inf);
978 * inf ptr to info frame (contents in hfa384x order)
989 hfa384x_InfFrame_t *inf)
1002 * inf ptr to info frame (contents in hfa384x order)
1013 hfa384x_InfFrame_t *inf)
1028 if (inf->framelen > 22) {
1030 src32 = (u32 *) &inf->info.commtallies32;
1035 src16 = (u16 *) &inf->info.commtallies16;
1050 * inf ptr to info frame (contents in hfa384x order)
1061 hfa384x_InfFrame_t *inf)
1066 hfa384x_ScanResult_t *sr = &(inf->info.scanresult);
1072 nbss = (inf->framelen * sizeof(u16)) -
1073 sizeof(inf->infotype) - sizeof(inf->info.scanresult.scanreason);
1078 inf->info.scanresult.scanreason, nbss);
1108 * inf ptr to info frame (contents in hfa384x order)
1119 hfa384x_InfFrame_t *inf)
1124 nbss = (inf->framelen - 3) / 32;
1133 memcpy(hw->scanresults, inf, sizeof(hfa384x_InfFrame_t));
1150 * inf ptr to info frame (contents in hfa384x order)
1161 hfa384x_InfFrame_t *inf)
1167 le16_to_cpu(inf->info.chinforesult.scanchannels);
1172 le16_to_cpu(inf->info.chinforesult.result[n].chid) -
1178 le16_to_cpu(inf->info.chinforesult.result[n].anl);
1180 le16_to_cpu(inf->info.chinforesult.result[n].pnl);
1182 le16_to_cpu(inf->info.chinforesult.result[n].
1211 hfa384x_InfFrame_t *inf;
1214 inf = (hfa384x_InfFrame_t *) skb->data;
1215 prism2sta_inf_authreq_defer(wlandev, inf);
1464 * inf ptr to info frame (contents in hfa384x order)
1475 hfa384x_InfFrame_t *inf)
1479 hw->link_status_new = le16_to_cpu(inf->info.linkstatus.linkstatus);
1494 * inf ptr to info frame (contents in hfa384x order)
1505 hfa384x_InfFrame_t *inf)
1511 memcpy(&rec, &inf->info.assocstatus, sizeof(rec));
1556 * inf ptr to info frame (contents in hfa384x order)
1568 hfa384x_InfFrame_t *inf)
1573 skb = dev_alloc_skb(sizeof(*inf));
1575 skb_put(skb, sizeof(*inf));
1576 memcpy(skb->data, inf, sizeof(*inf));
1583 hfa384x_InfFrame_t *inf)
1596 memcpy(rec.address, inf->info.authreq.sta_addr, ETH_ALEN);
1724 rec.algorithm = inf->info.authreq.algorithm;
1746 * inf ptr to info frame (contents in hfa384x order)
1757 hfa384x_InfFrame_t *inf)
1761 hw->psusercount = le16_to_cpu(inf->info.psusercnt.usercnt);
1773 * inf ptr to a generic info frame
1783 void prism2sta_ev_info(wlandevice_t *wlandev, hfa384x_InfFrame_t *inf)
1785 inf->infotype = le16_to_cpu(inf->infotype);
1787 switch (inf->infotype) {
1789 prism2sta_inf_handover(wlandev, inf);
1792 prism2sta_inf_tallies(wlandev, inf);
1795 prism2sta_inf_hostscanresults(wlandev, inf);
1798 prism2sta_inf_scanresults(wlandev, inf);
1801 prism2sta_inf_chinforesults(wlandev, inf);
1804 prism2sta_inf_linkstatus(wlandev, inf);
1807 prism2sta_inf_assocstatus(wlandev, inf);
1810 prism2sta_inf_authreq(wlandev, inf);
1813 prism2sta_inf_psusercnt(wlandev, inf);
1826 "Unknown info type=0x%02x\n", inf->infotype);