roda/rk886ex: Move device changes to mainboard code from acpi tables code
Change-Id: I3d694e5b3092d78bce89f6baa7b2dedffddf3012 Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com> Reviewed-on: http://review.coreboot.org/6807 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
This commit is contained in:
parent
02d674ac2f
commit
5dfd681978
|
@ -263,9 +263,5 @@ unsigned long write_acpi_tables(unsigned long start)
|
|||
printk(BIOS_DEBUG, "current = %lx\n", current);
|
||||
printk(BIOS_INFO, "ACPI: done.\n");
|
||||
|
||||
/* Enable Dummy DCC ON# for DVI */
|
||||
printk(BIOS_DEBUG, "Laptop handling...\n");
|
||||
outb(inb(0x60f) & ~(1 << 5), 0x60f);
|
||||
|
||||
return current;
|
||||
}
|
||||
|
|
|
@ -131,6 +131,9 @@ static void mainboard_enable(device_t dev)
|
|||
#if DUMP_RUNTIME_REGISTERS
|
||||
dump_runtime_registers();
|
||||
#endif
|
||||
/* Enable Dummy DCC ON# for DVI */
|
||||
printk(BIOS_DEBUG, "Laptop handling...\n");
|
||||
outb(inb(0x60f) & ~(1 << 5), 0x60f);
|
||||
}
|
||||
|
||||
struct chip_operations mainboard_ops = {
|
||||
|
|
Loading…
Reference in New Issue