mirror of https://github.com/xemu-project/xemu.git
fw_cfg: don't use reserved _ prefix
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
7859cb988d
commit
b96ae2da0b
|
@ -38,14 +38,14 @@
|
||||||
|
|
||||||
#define FW_CFG_SIZE 2
|
#define FW_CFG_SIZE 2
|
||||||
|
|
||||||
typedef struct _FWCfgEntry {
|
typedef struct FWCfgEntry {
|
||||||
uint32_t len;
|
uint32_t len;
|
||||||
uint8_t *data;
|
uint8_t *data;
|
||||||
void *callback_opaque;
|
void *callback_opaque;
|
||||||
FWCfgCallback callback;
|
FWCfgCallback callback;
|
||||||
} FWCfgEntry;
|
} FWCfgEntry;
|
||||||
|
|
||||||
struct _FWCfgState {
|
struct FWCfgState {
|
||||||
FWCfgEntry entries[2][FW_CFG_MAX_ENTRY];
|
FWCfgEntry entries[2][FW_CFG_MAX_ENTRY];
|
||||||
FWCfgFiles *files;
|
FWCfgFiles *files;
|
||||||
uint16_t cur_entry;
|
uint16_t cur_entry;
|
||||||
|
|
|
@ -53,7 +53,7 @@ typedef struct FWCfgFiles {
|
||||||
|
|
||||||
typedef void (*FWCfgCallback)(void *opaque, uint8_t *data);
|
typedef void (*FWCfgCallback)(void *opaque, uint8_t *data);
|
||||||
|
|
||||||
typedef struct _FWCfgState FWCfgState;
|
typedef struct FWCfgState FWCfgState;
|
||||||
int fw_cfg_add_bytes(FWCfgState *s, uint16_t key, uint8_t *data, uint32_t len);
|
int fw_cfg_add_bytes(FWCfgState *s, uint16_t key, uint8_t *data, uint32_t len);
|
||||||
int fw_cfg_add_i16(FWCfgState *s, uint16_t key, uint16_t value);
|
int fw_cfg_add_i16(FWCfgState *s, uint16_t key, uint16_t value);
|
||||||
int fw_cfg_add_i32(FWCfgState *s, uint16_t key, uint32_t value);
|
int fw_cfg_add_i32(FWCfgState *s, uint16_t key, uint32_t value);
|
||||||
|
|
Loading…
Reference in New Issue