diff options
author | Aaron Durbin <adurbin@chromium.org> | 2015-03-26 21:04:18 -0500 |
---|---|---|
committer | Aaron Durbin <adurbin@google.com> | 2015-03-31 23:03:10 +0200 |
commit | 67514a7a5f9b612fc87991fd9b617048763a04b8 (patch) | |
tree | a0acefae1a27ca7e296e933ba28e0ebfeb0fbf89 /src/lib/rmodule.c | |
parent | f786652af1c315fbe27221217aab0e845851acb5 (diff) | |
download | coreboot-67514a7a5f9b612fc87991fd9b617048763a04b8.tar.xz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/rmodule.c b/src/lib/rmodule.c index 791029a250..d06409f490 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> |