From: David Woodhouse Date: Tue, 5 Feb 2013 16:14:20 +0000 (+0000) Subject: Use find_pmtimer() after copying coreboot ACPI tables X-Git-Tag: rel-1.7.3~105 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=dbdb773f73b1191975ed777c9d06de27cb4477a9;p=seabios.git Use find_pmtimer() after copying coreboot ACPI tables Signed-off-by: David Woodhouse --- diff --git a/src/Kconfig b/src/Kconfig index cdd4f31..4ddf9da 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -253,7 +253,6 @@ menu "Hardware support" help Initialize the Memory Type Range Registers (on emulators). config PMTIMER - depends on !COREBOOT bool "Use ACPI timer" default y help diff --git a/src/coreboot.c b/src/coreboot.c index 5d5e03b..3969907 100644 --- a/src/coreboot.c +++ b/src/coreboot.c @@ -12,7 +12,7 @@ #include "boot.h" // boot_add_cbfs #include "disk.h" // MAXDESCSIZE #include "config.h" // CONFIG_* - +#include "acpi.h" // find_pmtimer /**************************************************************** * Memory map @@ -219,6 +219,8 @@ coreboot_biostable_setup(void) if (m->type == CB_MEM_TABLE) scan_tables(m->start, m->size); } + + find_pmtimer(); }