diff options
author | Miao Yan <yanmiaobest@gmail.com> | 2016-05-22 19:37:13 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2016-05-23 15:18:00 +0800 |
commit | d3ad06239291d89c1c598248d577cde5470ac1ee (patch) | |
tree | 2bfa2cac772a70f420ca68b0cf7ddf42ff183c56 /include | |
parent | 05dd6f183c8c20f0176a67ac885f8143c0052203 (diff) | |
download | talos-obmc-uboot-d3ad06239291d89c1c598248d577cde5470ac1ee.tar.gz talos-obmc-uboot-d3ad06239291d89c1c598248d577cde5470ac1ee.zip |
cmd: qfw: make fwcfg_present and fwcfg_dma_present public
This patch is part of the qfw refactor work. This patch makes
qemu_fwcfg_present() and qemu_fwcfg_dma_present() public functions.
Signed-off-by: Miao Yan <yanmiaobest@gmail.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/qemu_fw_cfg.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/qemu_fw_cfg.h b/include/qemu_fw_cfg.h index 986f4b2e5a..f718e09e31 100644 --- a/include/qemu_fw_cfg.h +++ b/include/qemu_fw_cfg.h @@ -167,4 +167,7 @@ struct fw_file *qemu_fwcfg_file_iter_init(struct fw_cfg_file_iter *iter); struct fw_file *qemu_fwcfg_file_iter_next(struct fw_cfg_file_iter *iter); bool qemu_fwcfg_file_iter_end(struct fw_cfg_file_iter *iter); +bool qemu_fwcfg_present(void); +bool qemu_fwcfg_dma_present(void); + #endif |