mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
fw_cfg: don't use reserved _ prefix
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
7859cb988d
commit
b96ae2da0b
2 changed files with 3 additions and 3 deletions
|
@ -38,14 +38,14 @@
|
|||
|
||||
#define FW_CFG_SIZE 2
|
||||
|
||||
typedef struct _FWCfgEntry {
|
||||
typedef struct FWCfgEntry {
|
||||
uint32_t len;
|
||||
uint8_t *data;
|
||||
void *callback_opaque;
|
||||
FWCfgCallback callback;
|
||||
} FWCfgEntry;
|
||||
|
||||
struct _FWCfgState {
|
||||
struct FWCfgState {
|
||||
FWCfgEntry entries[2][FW_CFG_MAX_ENTRY];
|
||||
FWCfgFiles *files;
|
||||
uint16_t cur_entry;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue