cmd: qfw: remove qemu_fwcfg_free_files()
This patch is part of the qfw refactor work. The qemu_fwcfg_free_files() function is only used in error handling in ACPI table generation, let's not make this a core function and move it to the right place. Signed-off-by: Miao Yan <yanmiaobest@gmail.com> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
@@ -217,18 +217,6 @@ struct fw_file *qemu_fwcfg_find_file(const char *name)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void qemu_fwcfg_free_files(void)
|
||||
{
|
||||
struct fw_file *file;
|
||||
struct list_head *list;
|
||||
|
||||
list_for_each(list, &fw_list) {
|
||||
file = list_entry(list, struct fw_file, list);
|
||||
if (file->addr)
|
||||
free((void *)file->addr);
|
||||
}
|
||||
}
|
||||
|
||||
struct fw_file *qemu_fwcfg_file_iter_init(struct fw_cfg_file_iter *iter)
|
||||
{
|
||||
iter->entry = fw_list.next;
|
||||
|
||||
Reference in New Issue
Block a user