Lines Matching refs:next_config_rom
225 __be32 *next_config_rom;
2170 // to the current config rom and clear the next_config_rom pointer so a new update
2172 if (ohci->next_config_rom != NULL) {
2173 if (ohci->next_config_rom != ohci->config_rom) {
2177 ohci->config_rom = ohci->next_config_rom;
2179 ohci->next_config_rom = NULL;
2538 ohci->next_config_rom = dmam_alloc_coherent(ohci->card.device, CONFIG_ROM_SIZE,
2540 if (ohci->next_config_rom == NULL)
2543 copy_config_rom(ohci->next_config_rom, config_rom, length);
2549 ohci->next_config_rom = ohci->config_rom;
2553 ohci->next_header = ohci->next_config_rom[0];
2554 ohci->next_config_rom[0] = 0;
2557 be32_to_cpu(ohci->next_config_rom[2]));
2598 __be32 *next_config_rom;
2627 * ohci->next_config_rom to NULL (see bus_reset_work).
2630 next_config_rom = dmam_alloc_coherent(ohci->card.device, CONFIG_ROM_SIZE,
2632 if (next_config_rom == NULL)
2637 // into the ohci->next_config_rom and then mark the local variable as null so that
2642 if (ohci->next_config_rom == NULL) {
2643 ohci->next_config_rom = next_config_rom;
2645 next_config_rom = NULL;
2648 copy_config_rom(ohci->next_config_rom, config_rom, length);
2651 ohci->next_config_rom[0] = 0;
2657 if (next_config_rom != NULL) {
2658 dmam_free_coherent(ohci->card.device, CONFIG_ROM_SIZE, next_config_rom,