diff options
-rw-r--r-- | src/include/console/console.h | 3 | ||||
-rw-r--r-- | src/northbridge/intel/gm45/gm45.h | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/include/console/console.h b/src/include/console/console.h index 3100ae2d55..d89d7471ca 100644 --- a/src/include/console/console.h +++ b/src/include/console/console.h @@ -22,6 +22,9 @@ #include <console/post_codes.h> #include <commonlib/loglevel.h> +#define RAM_DEBUG (IS_ENABLED(CONFIG_DEBUG_RAM_SETUP) ? BIOS_DEBUG : BIOS_NEVER) +#define RAM_SPEW (IS_ENABLED(CONFIG_DEBUG_RAM_SETUP) ? BIOS_SPEW : BIOS_NEVER) + #ifndef __ROMCC__ void post_code(u8 value); diff --git a/src/northbridge/intel/gm45/gm45.h b/src/northbridge/intel/gm45/gm45.h index 60e9574459..258809fe8a 100644 --- a/src/northbridge/intel/gm45/gm45.h +++ b/src/northbridge/intel/gm45/gm45.h @@ -443,7 +443,5 @@ struct acpi_rsdp; unsigned long northbridge_write_acpi_tables(device_t device, unsigned long start, struct acpi_rsdp *rsdp); #endif -#define RAM_DEBUG (IS_ENABLED(CONFIG_DEBUG_RAM_SETUP) ? BIOS_DEBUG : BIOS_NEVER) - #endif /* !__ACPI__ */ #endif /* __NORTHBRIDGE_INTEL_GM45_GM45_H__ */ |