mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 08:43:55 -06:00
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>
This commit is contained in:
parent
37bae93ce5
commit
e20a4425ca
3 changed files with 6 additions and 6 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue