summaryrefslogtreecommitdiffstats
path: root/src/lib/rmodule.c
diff options
context:
space:
mode:
authorAaron Durbin <adurbin@chromium.org>2015-03-26 21:04:18 -0500
committerAaron Durbin <adurbin@google.com>2015-03-31 23:03:10 +0200
commit67514a7a5f9b612fc87991fd9b617048763a04b8 (patch)
treea0acefae1a27ca7e296e933ba28e0ebfeb0fbf89 /src/lib/rmodule.c
parentf786652af1c315fbe27221217aab0e845851acb5 (diff)
downloadcoreboot-67514a7a5f9b612fc87991fd9b617048763a04b8.tar.gz
coreboot-67514a7a5f9b612fc87991fd9b617048763a04b8.tar.bz2
coreboot-67514a7a5f9b612fc87991fd9b617048763a04b8.zip
cbfs: remove cbfs_core.h includes
Some of the files which include cbfs_core.h don't even need the header definition while others just need the cbfs API which can be obtained from cbfs.h. Change-Id: I34f3b7c67f64380dcf957e662ffca2baefc31a90 Signed-off-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: http://review.coreboot.org/9126 Tested-by: build bot (Jenkins) Reviewed-by: Marc Jones <marc.jones@se-eng.com>
Diffstat (limited to 'src/lib/rmodule.c')
-rw-r--r--src/lib/rmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/rmodule.c b/src/lib/rmodule.c
index 791029a25043..d06409f49057 100644
--- a/src/lib/rmodule.c
+++ b/src/lib/rmodule.c
@@ -18,7 +18,7 @@
*/
#include <assert.h>
#include <cbmem.h>
-#include <cbfs_core.h>
+#include <cbfs.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>