diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2010-02-07 09:15:26 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-02-07 09:15:26 +0000 |
commit | b96ae2da0b50e2c0f3d27d70df32a6fd56f2593a (patch) | |
tree | 99067fa3b3ddec76a80be507747268be410ea7a8 /hw/fw_cfg.c | |
parent | 7859cb988da7a30d75a0831a97dc5988a5dc104a (diff) |
fw_cfg: don't use reserved _ prefix
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/fw_cfg.c')
-rw-r--r-- | hw/fw_cfg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/fw_cfg.c b/hw/fw_cfg.c index ea120ba553..fe6c5436a5 100644 --- a/hw/fw_cfg.c +++ b/hw/fw_cfg.c @@ -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; |