aboutsummaryrefslogtreecommitdiff
path: root/include/hw
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@linaro.org>2024-12-06 18:48:21 +0100
committerPhilippe Mathieu-Daudé <philmd@linaro.org>2024-12-13 15:53:54 +0100
commite20a4425ca360b473182ef60e00319c07e3a8799 (patch)
tree530c5ec5f6b0a1b8b7dc4eb8cf8dd7a63b113f4d /include/hw
parent37bae93ce54cfa1eeb8c51c9fa883ad781e0853b (diff)
downloadqemu-e20a4425ca360b473182ef60e00319c07e3a8799.zip
qemu-e20a4425ca360b473182ef60e00319c07e3a8799.tar.gz
qemu-e20a4425ca360b473182ef60e00319c07e3a8799.tar.bz2
hw/nvram/fw_cfg: Rename fw_cfg_add_[file]_from_generator()
fw_cfg_add_from_generator() is adding a 'file' entry, so rename as fw_cfg_add_file_from_generator() for clarity. Besides, we might introduce generators for other entry types. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Message-Id: <20241206181352.6836-2-philmd@linaro.org>
Diffstat (limited to 'include/hw')
-rw-r--r--include/hw/nvram/fw_cfg.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/hw/nvram/fw_cfg.h b/include/hw/nvram/fw_cfg.h
index fa42677..14e6896 100644
--- a/include/hw/nvram/fw_cfg.h
+++ b/include/hw/nvram/fw_cfg.h
@@ -291,7 +291,7 @@ void *fw_cfg_modify_file(FWCfgState *s, const char *filename, void *data,
size_t len);
/**
- * fw_cfg_add_from_generator:
+ * fw_cfg_add_file_from_generator:
* @s: fw_cfg device being modified
* @filename: name of new fw_cfg file item
* @gen_id: name of object implementing FW_CFG_DATA_GENERATOR interface
@@ -307,8 +307,8 @@ void *fw_cfg_modify_file(FWCfgState *s, const char *filename, void *data,
*
* Returns: %true on success, %false on error.
*/
-bool fw_cfg_add_from_generator(FWCfgState *s, const char *filename,
- const char *gen_id, Error **errp);
+bool fw_cfg_add_file_from_generator(FWCfgState *s, const char *filename,
+ const char *gen_id, Error **errp);
/**
* fw_cfg_add_extra_pci_roots: