Lines Matching defs:next_config_rom
221 __be32 *next_config_rom;
2073 * next_config_rom pointer so a new update can take place.
2076 if (ohci->next_config_rom != NULL) {
2077 if (ohci->next_config_rom != ohci->config_rom) {
2081 ohci->config_rom = ohci->next_config_rom;
2083 ohci->next_config_rom = NULL;
2438 ohci->next_config_rom = dmam_alloc_coherent(ohci->card.device, CONFIG_ROM_SIZE,
2440 if (ohci->next_config_rom == NULL)
2443 copy_config_rom(ohci->next_config_rom, config_rom, length);
2449 ohci->next_config_rom = ohci->config_rom;
2453 ohci->next_header = ohci->next_config_rom[0];
2454 ohci->next_config_rom[0] = 0;
2457 be32_to_cpu(ohci->next_config_rom[2]));
2499 __be32 *next_config_rom;
2528 * ohci->next_config_rom to NULL (see bus_reset_work).
2531 next_config_rom = dmam_alloc_coherent(ohci->card.device, CONFIG_ROM_SIZE,
2533 if (next_config_rom == NULL)
2540 * push our new allocation into the ohci->next_config_rom
2549 if (ohci->next_config_rom == NULL) {
2550 ohci->next_config_rom = next_config_rom;
2552 next_config_rom = NULL;
2555 copy_config_rom(ohci->next_config_rom, config_rom, length);
2558 ohci->next_config_rom[0] = 0;
2565 if (next_config_rom != NULL) {
2566 dmam_free_coherent(ohci->card.device, CONFIG_ROM_SIZE, next_config_rom,