summaryrefslogtreecommitdiffstats
path: root/src/northbridge/intel/haswell/raminit.c
diff options
context:
space:
mode:
authorAaron Durbin <adurbin@chromium.org>2015-03-31 20:33:53 -0500
committerAaron Durbin <adurbin@google.com>2015-04-01 22:51:10 +0200
commita30f7e667ca56fdfeea98cbe736b61b67048c621 (patch)
tree9eafb9ea1b9f9f0c55df9a5131af147e08a4213b /src/northbridge/intel/haswell/raminit.c
parent2a567eeb1d14d2f04d338a1ef6fbc7e46e90ed53 (diff)
downloadcoreboot-staging-a30f7e667ca56fdfeea98cbe736b61b67048c621.zip
coreboot-staging-a30f7e667ca56fdfeea98cbe736b61b67048c621.tar.gz
cbfs: correct types used for accessing files
In commit 72a8e5e751a7fa97c9d198f68cad49f9d9851669 the Makefile's were updated to use named types for cbfs file addition. However, the call sites were not checked to ensure the types matched. Correct all call sites to use the named types. Change-Id: Ib9fa693ef517e3196a3f04e9c06db52a9116fee7 Signed-off-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: http://review.coreboot.org/9195 Tested-by: build bot (Jenkins) Reviewed-by: Marc Jones <marc.jones@se-eng.com>
Diffstat (limited to 'src/northbridge/intel/haswell/raminit.c')
-rw-r--r--src/northbridge/intel/haswell/raminit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/northbridge/intel/haswell/raminit.c b/src/northbridge/intel/haswell/raminit.c
index 197dc0f..6bbb215 100644
--- a/src/northbridge/intel/haswell/raminit.c
+++ b/src/northbridge/intel/haswell/raminit.c
@@ -163,7 +163,7 @@ void sdram_initialize(struct pei_data *pei_data)
/* Locate and call UEFI System Agent binary. */
entry = (unsigned long)cbfs_get_file_content(
- CBFS_DEFAULT_MEDIA, "mrc.bin", 0xab, NULL);
+ CBFS_DEFAULT_MEDIA, "mrc.bin", CBFS_TYPE_MRC, NULL);
if (entry) {
int rv;
asm volatile (
OpenPOWER on IntegriCloud