diff options
author | Aaron Durbin <adurbin@chromium.org> | 2015-03-20 10:58:41 -0500 |
---|---|---|
committer | Aaron Durbin <adurbin@google.com> | 2015-03-31 19:30:07 +0200 |
commit | fcfdff84f4ddd6fe7bf68c3bc84c0173911d13de (patch) | |
tree | bef48145a31ff8e7bf735b085a5ece448af328fe /src/lib | |
parent | 7c2eb0d78bdf5faddef61e051a29a262ad29b26a (diff) |
loading: move ramstage cache function declarations
The functions related to caching ramstage were in cbfs.h.
Now that the loading code is separate move those declarations
to the common program_loading.h.
Change-Id: Ib22ef8a9c66e1d2b53388bceb8386baa6302d28b
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: http://review.coreboot.org/8835
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/ramstage_cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ramstage_cache.c b/src/lib/ramstage_cache.c index 814d807713..d61f1c16e6 100644 --- a/src/lib/ramstage_cache.c +++ b/src/lib/ramstage_cache.c @@ -19,8 +19,8 @@ #include <stddef.h> #include <string.h> -#include <cbfs.h> #include <console/console.h> +#include <program_loading.h> #include <ramstage_cache.h> #include <romstage_handoff.h> |