mainboard/jetway/nf81-t56n-lf: Make ACPI debug menuconfigable

Turns out we have a CONFIG_DEBUG_ACPI definition under:
Debugging -> Output verbose ACPI debug messages
Hence, let us make use of this definition.

Change-Id: I1b673feb6d9b2ee51c832a1cef159cd80e5c3517
Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Reviewed-on: http://review.coreboot.org/5506
Tested-by: build bot (Jenkins)
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
This commit is contained in:
Edward O'Callaghan 2014-04-15 17:26:46 +10:00 committed by Alexandru Gagniuc
parent feebd86ad2
commit ef4dcc09bb
1 changed files with 3 additions and 4 deletions

View File

@ -28,8 +28,7 @@
#include <device/pci_ids.h>
#include <string.h>
#define DUMP_ACPI_TABLES 0
#include <lib.h> /* used for hexdump for DUMP_ACPI_TABLES */
#include <lib.h> /* used for hexdump for CONFIG_DEBUG_ACPI */
extern const unsigned char AmlCode[];
@ -268,7 +267,7 @@ unsigned long write_acpi_tables(unsigned long start)
current += ssdt2->length;
acpi_add_table(rsdp,ssdt2);
#if DUMP_ACPI_TABLES == 1
#if defined(CONFIG_DEBUG_ACPI)
printk(BIOS_DEBUG, "rsdp\n");
hexdump(rsdp, sizeof(acpi_rsdp_t));
@ -298,7 +297,7 @@ unsigned long write_acpi_tables(unsigned long start)
printk(BIOS_DEBUG, "hest\n");
hexdump(hest, hest->header.length);
#endif /* DUMP_ACPI_TABLES */
#endif /* CONFIG_DEBUG_ACPI */
printk(BIOS_INFO, "ACPI: done.\n");
return current;