diff options
author | Myles Watson <mylesgw@gmail.com> | 2010-09-25 10:42:55 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-09-25 10:42:55 +0000 |
commit | 7fd931b11d6727f489f8ed76530b43a382ed3c60 (patch) | |
tree | ab45684a0d852e7aa4a30e40d224342c28e41a28 /src/northbridge | |
parent | 10ec0fed8e3336d52ab35f8da91a2a9423d3e969 (diff) | |
download | coreboot-7fd931b11d6727f489f8ed76530b43a382ed3c60.tar.xz |
Keep the mc146818rtc.h include close to the option table include where
possible.
Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5839 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/northbridge')
-rw-r--r-- | src/northbridge/intel/e7520/raminit.c | 3 | ||||
-rw-r--r-- | src/northbridge/intel/e7525/raminit.c | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/northbridge/intel/e7520/raminit.c b/src/northbridge/intel/e7520/raminit.c index 0ef73cc026..e9827c43b9 100644 --- a/src/northbridge/intel/e7520/raminit.c +++ b/src/northbridge/intel/e7520/raminit.c @@ -23,6 +23,7 @@ #include <stdlib.h> #include "raminit.h" #include "e7520.h" +#include <pc80/mc146818rtc.h> #if CONFIG_HAVE_OPTION_TABLE #include "option_table.h" #endif @@ -626,7 +627,7 @@ static int spd_set_dram_controller_mode(const struct mem_controller *ctrl, if (read_option(CMOS_VSTART_ECC_memory, CMOS_VLEN_ECC_memory, 1) == 0) { ecc = 0; /* ECC off in CMOS so disable it */ print_debug("ECC off\n"); - } else + } else #endif { print_debug("ECC on\n"); diff --git a/src/northbridge/intel/e7525/raminit.c b/src/northbridge/intel/e7525/raminit.c index a33b0c7680..b482bb9fec 100644 --- a/src/northbridge/intel/e7525/raminit.c +++ b/src/northbridge/intel/e7525/raminit.c @@ -23,6 +23,7 @@ #include <stdlib.h> #include "raminit.h" #include "e7525.h" +#include <pc80/mc146818rtc.h> #if CONFIG_HAVE_OPTION_TABLE #include "option_table.h" #endif |