Home
last modified time | relevance | path

Searched refs:n_parts (Results 1 – 6 of 6) sorted by relevance

/linux-4.1.27/drivers/net/ethernet/sfc/
Dmtd.c67 size_t n_parts, size_t sizeof_part) in efx_mtd_add() argument
72 for (i = 0; i < n_parts; i++) { in efx_mtd_add()
Dfalcon.c911 size_t n_parts; in falcon_mtd_probe() local
920 n_parts = 0; in falcon_mtd_probe()
924 parts[n_parts].spi = spi; in falcon_mtd_probe()
925 parts[n_parts].offset = FALCON_FLASH_BOOTCODE_START; in falcon_mtd_probe()
926 parts[n_parts].common.dev_type_name = "flash"; in falcon_mtd_probe()
927 parts[n_parts].common.type_name = "sfc_flash_bootrom"; in falcon_mtd_probe()
928 parts[n_parts].common.mtd.type = MTD_NORFLASH; in falcon_mtd_probe()
929 parts[n_parts].common.mtd.flags = MTD_CAP_NORFLASH; in falcon_mtd_probe()
930 parts[n_parts].common.mtd.size = spi->size - FALCON_FLASH_BOOTCODE_START; in falcon_mtd_probe()
931 parts[n_parts].common.mtd.erasesize = spi->erase_size; in falcon_mtd_probe()
[all …]
Dsiena.c840 size_t n_parts) in siena_mtd_get_fw_subtypes() argument
851 for (i = 0; i < n_parts; i++) in siena_mtd_get_fw_subtypes()
862 size_t n_parts; in siena_mtd_probe() local
876 n_parts = 0; in siena_mtd_probe()
880 rc = siena_mtd_probe_partition(efx, &parts[n_parts], in siena_mtd_probe()
883 n_parts++; in siena_mtd_probe()
891 rc = siena_mtd_get_fw_subtypes(efx, parts, n_parts); in siena_mtd_probe()
895 rc = efx_mtd_add(efx, &parts[0].common, n_parts, sizeof(*parts)); in siena_mtd_probe()
Defx.h210 size_t n_parts, size_t sizeof_part);
Def10.c3451 size_t outlen, n_parts_total, i, n_parts; in efx_ef10_mtd_probe() local
3474 n_parts = 0; in efx_ef10_mtd_probe()
3478 rc = efx_ef10_mtd_probe_partition(efx, &parts[n_parts], type); in efx_ef10_mtd_probe()
3480 n_parts++; in efx_ef10_mtd_probe()
3485 rc = efx_mtd_add(efx, &parts[0].common, n_parts, sizeof(*parts)); in efx_ef10_mtd_probe()
/linux-4.1.27/net/rxrpc/
Dar-key.c218 unsigned int toklen = *_toklen, n_parts, loop, tmp; in rxrpc_krb5_decode_principal() local
228 n_parts = ntohl(*xdr++); in rxrpc_krb5_decode_principal()
230 if (n_parts <= 0 || n_parts > AFSTOKEN_K5_COMPONENTS_MAX) in rxrpc_krb5_decode_principal()
232 princ->n_name_parts = n_parts; in rxrpc_krb5_decode_principal()
234 if (toklen <= (n_parts + 1) * 4) in rxrpc_krb5_decode_principal()
237 princ->name_parts = kcalloc(n_parts, sizeof(char *), GFP_KERNEL); in rxrpc_krb5_decode_principal()
241 for (loop = 0; loop < n_parts; loop++) { in rxrpc_krb5_decode_principal()