diff options
author | AKASHI Takahiro | 2020-10-29 13:47:44 +0900 |
---|---|---|
committer | Heinrich Schuchardt | 2020-10-30 14:20:27 +0100 |
commit | 6beaa47d4fe640392f1b7551dcf976fbb676d554 (patch) | |
tree | 39063f9d71402f51981bb44873efad6fb6ee9f6d /include/dfu.h | |
parent | 3149e524fc1e76ec1420cd17588c724d4232a904 (diff) |
dfu: export dfu_list
This variable will be utilized to enumerate all dfu entities
for UEFI capsule firmware update in a later commit.
Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/dfu.h')
-rw-r--r-- | include/dfu.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/dfu.h b/include/dfu.h index d3d7e07b60d..eaf4bfc0d5e 100644 --- a/include/dfu.h +++ b/include/dfu.h @@ -158,6 +158,9 @@ struct dfu_entity { unsigned int inited:1; }; +struct list_head; +extern struct list_head dfu_list; + #ifdef CONFIG_SET_DFU_ALT_INFO /** * set_dfu_alt_info() - set dfu_alt_info environment variable |