From bcd84fe149c29b48a8580dd64aba3a1333411039 Mon Sep 17 00:00:00 2001 From: Thomas Heijligen Date: Thu, 10 Jan 2019 16:53:34 +0100 Subject: mb/emulation/qemu-i440fx: change file handling Reduce the number of fw_find_file calls by returning the file structure at fw_cfg_check_file. The file structure can then be used to allocate memory and access the file content directly without recurrence searching. Remove now unnecessary function fw_cfg_load_file. Fixed breaking function calls and add include guard at fw_cfg_if.h. Change-Id: I48cc943aaa999e4323e9d7e5dd666c5316533dcc Signed-off-by: Thomas Heijligen Reviewed-on: https://review.coreboot.org/c/30845 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Rudolph --- src/mainboard/emulation/qemu-i440fx/fw_cfg_if.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/mainboard/emulation/qemu-i440fx/fw_cfg_if.h') diff --git a/src/mainboard/emulation/qemu-i440fx/fw_cfg_if.h b/src/mainboard/emulation/qemu-i440fx/fw_cfg_if.h index 8f1e24ccfa..46aee9b3d6 100644 --- a/src/mainboard/emulation/qemu-i440fx/fw_cfg_if.h +++ b/src/mainboard/emulation/qemu-i440fx/fw_cfg_if.h @@ -16,6 +16,8 @@ * This are the qemu firmware config interface defines and structs. * Copyed over from qemu soure tree, include/hw/nvram/fw_cfg.h */ +#ifndef FW_CFG_IF_H +#define FW_CFG_IF_H #include @@ -90,3 +92,5 @@ typedef struct FwCfgSmbios { uint8_t tabletype; uint16_t fieldoffset; } FwCfgSmbios; + +#endif /* FW_CFG_IF_H */ -- cgit v1.2.3