Searched refs:pda (Results 1 - 20 of 20) sorted by relevance

/drivers/net/wireless/orinoco/
H A Dhermes_dld.h35 __le16 *pda,
42 const __le16 *pda,
47 const __le16 *pda,
H A Dfw.c102 __le16 *pda; local
114 pda = kzalloc(fw->pda_size, GFP_KERNEL);
115 if (!pda)
126 err = hw->ops->read_pda(hw, pda, fw->pda_addr, fw->pda_size);
174 err = hermes_apply_pda_with_defaults(hw, first_block, end, pda,
175 &pda[fw->pda_size / sizeof(*pda)]);
195 kfree(pda);
215 __le16 *pda = NULL; local
224 pda
[all...]
H A Dhermes_dld.c220 * Attempt to write every records that is in the specified pda
226 const __le16 *pda,
237 pdi = (const struct pdi *) (pda + 2);
386 * the pda, and use that.
388 * For certain records, use defaults if they are not found in pda.
393 const __le16 *pda,
397 const struct pdi *first_pdi = (const struct pdi *) &pda[2];
223 hermes_apply_pda(struct hermes *hw, const char *first_pdr, const void *pdr_end, const __le16 *pda, const void *pda_end) argument
390 hermes_apply_pda_with_defaults(struct hermes *hw, const char *first_pdr, const void *pdr_end, const __le16 *pda, const void *pda_end) argument
H A Dhermes.c687 static int hermes_read_pda(struct hermes *hw, __le16 *pda, u32 pda_addr, argument
693 __le16 *data = pda;
704 * We will pad the information into pda, so other routines
706 pda[0] = cpu_to_le16(pda_len - 2);
708 pda[1] = cpu_to_le16(0x0800); /* CFG_PROD_DATA */
710 data = pda + 2;
728 pda_size = le16_to_cpu(pda[0]);
H A Dhermes.h396 int (*read_pda)(struct hermes *hw, __le16 *pda,
H A Dorinoco_usb.c1076 static int ezusb_read_pda(struct hermes *hw, __le16 *pda, argument
1090 * We will pad the information into pda, so other routines
1092 pda[0] = cpu_to_le16(pda_len - 2);
1094 pda[1] = cpu_to_le16(0x0800); /* CFG_PROD_DATA */
1097 EZUSB_FRAME_CONTROL, &pda[2], pda_len - 4,
/drivers/staging/wlan-ng/
H A Dprism2fw.c106 struct pda { struct
154 static struct pda pda; variable in typeref:struct:pda
170 static int read_cardpda(struct pda *pda, wlandevice_t *wlandev);
172 static int mkpdrlist(struct pda *pda);
175 struct s3plugrec *s3plug, unsigned int ns3plug, struct pda *pda);
266 /* clear the pda an
584 mkpdrlist(struct pda *pda) argument
657 plugimage(struct imgchunk *fchunk, unsigned int nfchunks, struct s3plugrec *s3plug, unsigned int ns3plug, struct pda *pda) argument
760 read_cardpda(struct pda *pda, wlandevice_t *wlandev) argument
[all...]
H A Dp80211metastruct.h230 p80211item_unk1024_t pda; member in struct:p80211msg_p2req_readpda
H A Dprism2mgmt.c731 msg->pda.data,
744 msg->pda.status = P80211ENUM_msgitem_status_data_ok;
H A Dhfa384x_usb.c2410 u16 *pda = buf; local
2429 /* Read the pda from each known address. */
2450 pdrlen = le16_to_cpu(pda[currpdr]) * 2;
2451 pdrcode = le16_to_cpu(pda[currpdr + 1]);
2472 /* note the access to pda[], need words here */
2473 currpdr += le16_to_cpu(pda[currpdr]) + 1;
2491 pr_debug("Failure: pda is not okay\n");
/drivers/isdn/i4l/
H A Disdn_x25iface.c74 static int pdata_is_bad(ix25_pdata_t *pda) { argument
76 if (pda && pda->magic == ISDN_X25IFACE_MAGIC) return 0;
166 ix25_pdata_t *pda = cprot->proto_data; local
171 if (pdata_is_bad(pda)) return -1;
184 pda->state = WAN_DISCONNECTED;
/drivers/net/wireless/p54/
H A Deeprom.c283 struct pda_channel_output_limit_longbow *pda = data; local
286 pda = data;
287 for (j = 0; j < ARRAY_SIZE(pda->point); j++) {
289 &pda->point[j];
307 struct pda_channel_output_limit *pda = data; local
309 rawpower = max(rawpower, pda->val_qpsk);
310 rawpower = max(rawpower, pda->val_bpsk);
311 rawpower = max(rawpower, pda->val_16qam);
312 rawpower = max(rawpower, pda->val_64qam);
830 struct pda_custom_wrapper *pda local
851 struct pda_custom_wrapper *pda = (void *) entry->data; local
858 struct pda_custom_wrapper *pda = (void *) entry->data; local
[all...]
/drivers/staging/rtl8712/
H A Drtl871x_recv.c478 u8 *psa, *pda, *pbssid; local
485 pda = get_da(ptr);
490 memcpy(pattrib->dst, pda, ETH_ALEN);
495 memcpy(pattrib->ra, pda, ETH_ALEN);
500 memcpy(pattrib->ra, pda, ETH_ALEN);
/drivers/net/wireless/hostap/
H A Dhostap_download.c150 __le16 *pda = (__le16 *) buf; local
160 len = le16_to_cpu(pda[pos]);
161 pdr = le16_to_cpu(pda[pos + 1]);
H A Dhostap_proc.c273 if (local->pda == NULL || *_pos >= PRISM2_PDA_SIZE)
279 if (copy_to_user(buf, local->pda + off, count) != 0)
472 proc_create_data("pda", 0, local->proc,
H A Dhostap_hw.c1357 kfree(local->pda);
1359 local->pda = NULL;
1361 local->pda = prism2_read_pda(dev);
3382 kfree(local->pda);
H A Dhostap_wlan.h793 u8 *pda; member in struct:local_info
/drivers/staging/rtl8188eu/core/
H A Drtw_recv.c1141 u8 *psa, *pda, *pbssid; local
1150 pda = get_da(ptr);
1159 memcpy(pattrib->dst, pda, ETH_ALEN);
1166 memcpy(pattrib->ra, pda, ETH_ALEN);
1171 memcpy(pattrib->ra, pda, ETH_ALEN);
/drivers/staging/rtl8723au/core/
H A Drtw_recv.c1286 u8 *psa, *pda; local
1297 pda = ieee80211_get_DA(hdr);
1300 ether_addr_copy(pattrib->dst, pda);
1307 ether_addr_copy(pattrib->ra, pda);
1314 ether_addr_copy(pattrib->ra, pda);
/drivers/dma/
H A Dimx-sdma.c193 * @pda: peripheral dma destination address register
211 u32 pda; member in struct:sdma_context_data

Completed in 987 milliseconds