Home | History | Annotate | Download | only in ti-utils

Lines Matching full:pdata

327     struct wl1271_cmd_cal_p2g *pdata, unsigned int *pver)
372 pdata[nvsTypeInfo].type = tlv_type;
373 pdata[nvsTypeInfo].len = tlv_len;
378 pdata[nvsTypeInfo].buf[info_idx] =
388 static int nvs_fill_version(int fd, unsigned int *pdata)
397 tmp = (*pdata >> 16) & 0xff;
400 tmp = (*pdata >> 8) & 0xff;
403 tmp = *pdata & 0xff;
514 struct wl1271_cmd_cal_p2g *pdata;
595 pdata = (struct wl1271_cmd_cal_p2g *)arg;
598 write(new_nvs, &pdata->len, 2);
600 p = (unsigned char *)&(pdata->buf);
601 for (i = 0; i < pdata->len; i++) {
629 if (nvs_fill_version(new_nvs, &pdata->ver)) {