diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2009-03-13 15:42:27 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2009-03-13 15:42:27 +0000 |
commit | be7f79867e4d989fc9cb7fb9e8b0b8ec55956875 (patch) | |
tree | f5ae688b318dfb7456351bb33a5a30f28bb9dedc /src/northbridge/amd | |
parent | cc46e73a0221d08a30c78adfc568f162cdda407d (diff) | |
download | coreboot-be7f79867e4d989fc9cb7fb9e8b0b8ec55956875.tar.xz |
This, ladies and gentlement, is commit #4000.
Use the (almost) same strict CFLAGS in v2 that we use on v3. And fix a few
include files and missing prototypes. Also, fix up the Config-abuild.lb files
to properly work for cross compiling.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4000 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/northbridge/amd')
-rw-r--r-- | src/northbridge/amd/amdfam10/reset_test.c | 1 | ||||
-rw-r--r-- | src/northbridge/amd/amdk8/northbridge.c | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/northbridge/amd/amdfam10/reset_test.c b/src/northbridge/amd/amdfam10/reset_test.c index bc9fe6cb43..389d8e60a9 100644 --- a/src/northbridge/amd/amdfam10/reset_test.c +++ b/src/northbridge/amd/amdfam10/reset_test.c @@ -19,6 +19,7 @@ #include <stdint.h> #include <cpu/x86/lapic.h> +#include "amdfam10.h" #define NODE_ID 0x60 #define HT_INIT_CONTROL 0x6c diff --git a/src/northbridge/amd/amdk8/northbridge.c b/src/northbridge/amd/amdk8/northbridge.c index cbb921d293..c2c89d1ffb 100644 --- a/src/northbridge/amd/amdk8/northbridge.c +++ b/src/northbridge/amd/amdk8/northbridge.c @@ -19,8 +19,8 @@ #include <cpu/x86/lapic.h> -#if CONFIG_LOGICAL_CPUS==1 #include <cpu/amd/dualcore.h> +#if CONFIG_LOGICAL_CPUS==1 #include <pc80/mc146818rtc.h> #endif @@ -30,9 +30,7 @@ #include "amdk8.h" -#if HW_MEM_HOLE_SIZEK != 0 #include <cpu/amd/model_fxx_rev.h> -#endif #include <cpu/amd/amdk8_sysconf.h> |