Home
last modified time | relevance | path

Searched refs:versions (Results 1 – 25 of 50) sorted by relevance

12

/drivers/staging/csr/
Dcsr_wifi_router_ctrl_free_upstream_contents.c61 kfree(p->versions.routerBuild); in CsrWifiRouterCtrlFreeUpstreamMessageContents()
62 p->versions.routerBuild = NULL; in CsrWifiRouterCtrlFreeUpstreamMessageContents()
Dcsr_wifi_sme_free_upstream_contents.c235 kfree(p->versions.routerBuild); in CsrWifiSmeFreeUpstreamMessageContents()
236 p->versions.routerBuild = NULL; in CsrWifiSmeFreeUpstreamMessageContents()
237 kfree(p->versions.smeBuild); in CsrWifiSmeFreeUpstreamMessageContents()
238 p->versions.smeBuild = NULL; in CsrWifiSmeFreeUpstreamMessageContents()
Dunifi_sme.h66 CsrWifiSmeVersions versions; member
193 int sme_mgt_versions_get(unifi_priv_t *priv, CsrWifiSmeVersions *versions);
Dsme_sys.c724 CsrWifiRouterCtrlVersions versions; in CsrWifiRouterCtrlWifiOnReqHandler() local
832 versions.chipId = priv->card_info.chip_id; in CsrWifiRouterCtrlWifiOnReqHandler()
833 versions.chipVersion = priv->card_info.chip_version; in CsrWifiRouterCtrlWifiOnReqHandler()
834 versions.firmwareBuild = priv->card_info.fw_build; in CsrWifiRouterCtrlWifiOnReqHandler()
835 versions.firmwareHip = priv->card_info.fw_hip_version; in CsrWifiRouterCtrlWifiOnReqHandler()
836 versions.routerBuild = (char*)CSR_WIFI_VERSION; in CsrWifiRouterCtrlWifiOnReqHandler()
837 versions.routerHip = (UNIFI_HIP_MAJOR_VERSION << 8) | UNIFI_HIP_MINOR_VERSION; in CsrWifiRouterCtrlWifiOnReqHandler()
839 CsrWifiRouterCtrlWifiOnIndSend(msg->source, 0, CSR_RESULT_SUCCESS, versions); in CsrWifiRouterCtrlWifiOnReqHandler()
1811 CsrWifiRouterCtrlVersions versions; in CsrWifiRouterCtrlModeSetReqHandler() local
1848 versions.chipId = priv->card_info.chip_id; in CsrWifiRouterCtrlModeSetReqHandler()
[all …]
Dcsr_wifi_router_ctrl_serialize.c1793 …bufferSize += (primitive->versions.routerBuild ? strlen(primitive->versions.routerBuild) : 0) + 1;… in CsrWifiRouterCtrlWifiOnIndSizeof()
1806 CsrUint32Ser(ptr, len, (u32) primitive->versions.chipId); in CsrWifiRouterCtrlWifiOnIndSer()
1807 CsrUint32Ser(ptr, len, (u32) primitive->versions.chipVersion); in CsrWifiRouterCtrlWifiOnIndSer()
1808 CsrUint32Ser(ptr, len, (u32) primitive->versions.firmwareBuild); in CsrWifiRouterCtrlWifiOnIndSer()
1809 CsrUint32Ser(ptr, len, (u32) primitive->versions.firmwareHip); in CsrWifiRouterCtrlWifiOnIndSer()
1810 CsrCharStringSer(ptr, len, primitive->versions.routerBuild); in CsrWifiRouterCtrlWifiOnIndSer()
1811 CsrUint32Ser(ptr, len, (u32) primitive->versions.routerHip); in CsrWifiRouterCtrlWifiOnIndSer()
1825 CsrUint32Des((u32 *) &primitive->versions.chipId, buffer, &offset); in CsrWifiRouterCtrlWifiOnIndDes()
1826 CsrUint32Des((u32 *) &primitive->versions.chipVersion, buffer, &offset); in CsrWifiRouterCtrlWifiOnIndDes()
1827 CsrUint32Des((u32 *) &primitive->versions.firmwareBuild, buffer, &offset); in CsrWifiRouterCtrlWifiOnIndDes()
[all …]
Dsme_blocking.c776 int sme_mgt_versions_get(unifi_priv_t *priv, CsrWifiSmeVersions *versions) in sme_mgt_versions_get() argument
798 if (versions != NULL) { in sme_mgt_versions_get()
799 memcpy((unsigned char*)versions, in sme_mgt_versions_get()
800 (unsigned char*)&priv->sme_reply.versions, in sme_mgt_versions_get()
812 status = CsrWifiSmeMgtVersionsGetReq(priv->smepriv, versions); in sme_mgt_versions_get()
Dcsr_wifi_sme_serialize.c5421 …bufferSize += (primitive->versions.routerBuild ? strlen(primitive->versions.routerBuild) : 0) + 1;… in CsrWifiSmeVersionsGetCfmSizeof()
5423 …bufferSize += (primitive->versions.smeBuild ? strlen(primitive->versions.smeBuild) : 0) + 1; … in CsrWifiSmeVersionsGetCfmSizeof()
5435 CsrUint32Ser(ptr, len, (u32) primitive->versions.chipId); in CsrWifiSmeVersionsGetCfmSer()
5436 CsrUint32Ser(ptr, len, (u32) primitive->versions.chipVersion); in CsrWifiSmeVersionsGetCfmSer()
5437 CsrUint32Ser(ptr, len, (u32) primitive->versions.firmwareBuild); in CsrWifiSmeVersionsGetCfmSer()
5438 CsrUint32Ser(ptr, len, (u32) primitive->versions.firmwarePatch); in CsrWifiSmeVersionsGetCfmSer()
5439 CsrUint32Ser(ptr, len, (u32) primitive->versions.firmwareHip); in CsrWifiSmeVersionsGetCfmSer()
5440 CsrCharStringSer(ptr, len, primitive->versions.routerBuild); in CsrWifiSmeVersionsGetCfmSer()
5441 CsrUint32Ser(ptr, len, (u32) primitive->versions.routerHip); in CsrWifiSmeVersionsGetCfmSer()
5442 CsrCharStringSer(ptr, len, primitive->versions.smeBuild); in CsrWifiSmeVersionsGetCfmSer()
[all …]
Dsme_mgt.c353 priv->sme_reply.versions = cfm->versions; in CsrWifiSmeVersionsGetCfmHandler()
/drivers/scsi/aic7xxx/aicasm/
Daicasm_gram.y70 char *versions; variable
1969 if (versions != NULL) in add_version()
1970 oldlen = strlen(versions); in add_version()
1971 versions = realloc(versions, newlen + oldlen + 2); in add_version()
1972 if (versions == NULL) in add_version()
1974 strcpy(&versions[oldlen], prefix); in add_version()
1975 strcpy(&versions[oldlen + strlen(prefix)], verstring); in add_version()
1976 versions[newlen + oldlen] = '\n'; in add_version()
1977 versions[newlen + oldlen + 1] = '\0'; in add_version()
Daicasm.h84 extern char *versions;
Daicasm_symbol.c344 versions); in aic_print_file_prologue()
Daicasm.c363 "%s */\n", versions); in output_code()
/drivers/gpu/drm/radeon/
DKconfig8 enable this only if you have ancient versions of the DDX drivers.
/drivers/misc/cb710/
DKconfig6 reader found in some laptops (ie. some versions of HP Compaq nx9500).
/drivers/net/plip/
DKconfig33 with the PLIP support in Linux versions 1.0.x. This option enlarges
/drivers/net/wireless/ath/ath5k/
DKconfig15 Currently the following chip versions are supported:
/drivers/isdn/gigaset/
DKconfig9 and 4170/4175 and their T-Com versions Sinus 45isdn and Sinus
/drivers/atm/
DKconfig44 Power155 155 Mbps ATM adapters. Both, the versions with 512KB and
46 and the FPGA and the ASIC Tonga versions of the board are supported.
385 cards. It simultaneously supports the 155 and 622 versions.
/drivers/mtd/ubi/
DKconfig64 format for fastmap may change in the next kernel versions
/drivers/isdn/hisax/
DKconfig171 versions passive ISDN cards.
181 This enables HiSax support for the AsusCom and their OEM versions
/drivers/net/wireless/orinoco/
DKconfig141 This driver is for USB versions of the Agere Orinoco card.
/drivers/tty/vt/
Dcp437.uni5 # Latin characters should replaced with their nonaccented versions,
/drivers/staging/speakup/
Dspkguide.txt746 Recent versions of Speakup provide two additional ways to control the
1120 early versions of this project.
1149 initial versions of this script, and we would also like to thank him for
1362 from that of the Document, and from those of previous versions
1391 the network locations given in the Document for previous versions
1441 versions, provided that you include in the combination all of the
1503 original versions of these Invariant Sections. You may include a
1506 the original English version of this License and the original versions
1530 The Free Software Foundation may publish new, revised versions
1532 versions will be similar in spirit to the present version, but may
/drivers/staging/wlags49_h2/
DREADME.wlags49105 This software can be compiled and installed with Linux kernel versions
341 versions) and SuSE Linux uses 'YaST'. These tools creates scripts, like
361 The latest versions of the PCMCIA package contain scripts that use the
/drivers/usb/gadget/
DKconfig122 # - licensed IP used in both SOC and discrete versions
334 # Controllers available in both integrated and discrete versions
646 older versions of Windows.
653 as the "driver info file". For versions of MS-Windows older than

12