Lines Matching refs:nvram
60 struct bcm963xx_nvram *nvram) in bcm63xx_read_nvram() argument
68 &retlen, (void *)nvram); in bcm63xx_read_nvram()
72 ret = bcm963xx_nvram_checksum(nvram, &expected_crc, &actual_crc); in bcm63xx_read_nvram()
77 if (!nvram->psi_size) in bcm63xx_read_nvram()
78 nvram->psi_size = BCM963XX_DEFAULT_PSI_SIZE; in bcm63xx_read_nvram()
89 const struct mtd_partition **pparts, struct bcm963xx_nvram *nvram) in bcm63xx_parse_cfe_nor_partitions() argument
101 nvramlen = nvram->psi_size * SZ_1K; in bcm63xx_parse_cfe_nor_partitions()
138 struct bcm963xx_nvram *nvram = NULL; in bcm63xx_parse_cfe_partitions() local
144 nvram = vzalloc(sizeof(*nvram)); in bcm63xx_parse_cfe_partitions()
145 if (!nvram) in bcm63xx_parse_cfe_partitions()
148 ret = bcm63xx_read_nvram(master, nvram); in bcm63xx_parse_cfe_partitions()
153 ret = bcm63xx_parse_cfe_nor_partitions(master, pparts, nvram); in bcm63xx_parse_cfe_partitions()
158 vfree(nvram); in bcm63xx_parse_cfe_partitions()