fw_cfg: don't use reserved _ prefix

Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
Blue Swirl 2010-02-07 09:15:26 +00:00
parent 7859cb988d
commit b96ae2da0b
2 changed files with 3 additions and 3 deletions

View file

@ -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;