diff options
author | Aaron Durbin <adurbin@chromium.org> | 2016-03-17 23:13:34 -0500 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2016-03-22 13:54:52 +0100 |
commit | 94271b428e95d3709352b455b9e6443ff769ec49 (patch) | |
tree | e286bc2b462ae1a3b79d01349a9b332e8fa02572 /src/include | |
parent | f51b12735d822289942d8958707f400bc9634d00 (diff) |
lib/rmodule: export parameters in struct rmod_stage_load
In order for a caller to utilize an rmodule's parameters section
after calling rmodule_stage_load() export the rmodule's parameter
pointer in struct rmod_stage_load.
Change-Id: I9cd51652cf8cdb3fae773256989851638aa1a60f
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://review.coreboot.org/14139
Tested-by: build bot (Jenkins)
Reviewed-by: Furquan Shaikh <furquan@google.com>
Reviewed-by: Andrey Petrov <andrey.petrov@intel.com>
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/rmodule.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/rmodule.h b/src/include/rmodule.h index a2612d1110..c0c062cf80 100644 --- a/src/include/rmodule.h +++ b/src/include/rmodule.h @@ -55,6 +55,7 @@ struct prog; struct rmod_stage_load { uint32_t cbmem_id; struct prog *prog; + void *params; }; /* Both of the following functions return 0 on success, -1 on error. */ |