Home | History | Annotate | Download | only in pci

Lines Matching defs:nvm_sections

3249 	struct iwm_nvm_section nvm_sections[IWM_NVM_NUM_OF_SECTIONS];
3259 memset(nvm_sections, 0, sizeof(nvm_sections));
3272 nvm_sections[section].data = kmem_alloc(len, KM_SLEEP);
3273 memcpy(nvm_sections[section].data, buf, len);
3274 nvm_sections[section].length = len;
3278 err = iwm_parse_nvm_sections(sc, nvm_sections);
3281 if (nvm_sections[i].data != NULL)
3282 kmem_free(nvm_sections[i].data, nvm_sections[i].length);