From f96b0d720f2d09ae6a1e4d94c6be82c087fa8155 Mon Sep 17 00:00:00 2001 From: Blue Swirl Date: Sun, 7 Feb 2010 09:15:26 +0000 Subject: [PATCH] fw_cfg: don't use reserved _ prefix Signed-off-by: Blue Swirl --- hw/fw_cfg.c | 4 ++-- hw/fw_cfg.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hw/fw_cfg.c b/hw/fw_cfg.c index ea120ba..fe6c543 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; diff --git a/hw/fw_cfg.h b/hw/fw_cfg.h index c1019d0..4d13a4f 100644 --- a/hw/fw_cfg.h +++ b/hw/fw_cfg.h @@ -53,7 +53,7 @@ typedef struct FWCfgFiles { 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_i16(FWCfgState *s, uint16_t key, uint16_t value); int fw_cfg_add_i32(FWCfgState *s, uint16_t key, uint32_t value); -- 2.7.4