diff options
author | Aaron Durbin <adurbin@chromium.org> | 2015-03-27 21:17:22 -0500 |
---|---|---|
committer | Aaron Durbin <adurbin@google.com> | 2015-04-03 14:53:35 +0200 |
commit | 460703bbb4f1a51b9ecd19ac78ec62c97502a4a2 (patch) | |
tree | 050712ccf718a467ee9c76b01b21dfafcb05f8a7 /src/include/rmodule.h | |
parent | ce9efe061a23bc3e3d2a4c17cf29692ce6f9eb53 (diff) |
rmodule: use struct prog while loading rmodules
The rmod_stage_load structure contained the same fields
as struct prog. In order to more closely integrate with the
rest of program loading use struct prog.
Change-Id: Ib7f45d0b3573e6d518864deacc4002802b11aa9c
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: http://review.coreboot.org/9143
Tested-by: build bot (Jenkins)
Reviewed-by: Marc Jones <marc.jones@se-eng.com>
Diffstat (limited to 'src/include/rmodule.h')
-rw-r--r-- | src/include/rmodule.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/include/rmodule.h b/src/include/rmodule.h index 76b855a22e..242ed91f8b 100644 --- a/src/include/rmodule.h +++ b/src/include/rmodule.h @@ -55,15 +55,11 @@ int rmodule_calc_region(unsigned int region_alignment, size_t rmodule_size, * using dynamic cbmem because it uses the dynamic cbmem API to obtain * the backing store region for the stage. */ struct cbfs_stage; -struct cbmem_entry; +struct prog; struct rmod_stage_load { - /* Inputs */ uint32_t cbmem_id; - const char *name; - /* Outputs */ - const struct cbmem_entry *cbmem_entry; - void *entry; + struct prog *prog; }; /* Both of the following functions return 0 on success, -1 on error. */ |