Kevin O'Connor wrote:
void s3_resume_vga_init() { if (!CONFIG_S3_RESUME_VGA_INIT) return; struct rom_header *rom = (void*)OPTION_ROM_START; if (! is_valid_rom(rom)) return; callrom(rom, OPTION_ROM_INITVECTOR, 0); }
Would this remove the need for the acpi=s3_bios kernel parameter?
I guess this is doing the same thing?
//Peter