diff options
author | Paul Brook | 2009-05-10 02:44:56 +0200 |
---|---|---|
committer | Paul Brook | 2009-05-10 02:44:56 +0200 |
commit | bc24a225af2464dc30f88d6f930779cbf0e22b67 (patch) | |
tree | 6df682b479f89863159f836e1dc292623ab577e1 /hw/axis_dev88.c | |
parent | Workaround compiler warnings at -O1 (diff) | |
download | qemu-bc24a225af2464dc30f88d6f930779cbf0e22b67.tar.gz qemu-bc24a225af2464dc30f88d6f930779cbf0e22b67.tar.xz qemu-bc24a225af2464dc30f88d6f930779cbf0e22b67.zip |
Follow coding conventions
Remove explicit struct qualifiers and rename structure types.
Signed-off-by: Paul Brook <paul@codesourcery.com>
Diffstat (limited to 'hw/axis_dev88.c')
-rw-r--r-- | hw/axis_dev88.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/axis_dev88.c b/hw/axis_dev88.c index 85ca81e772..e9f2ecee9d 100644 --- a/hw/axis_dev88.c +++ b/hw/axis_dev88.c @@ -37,7 +37,7 @@ struct nand_state_t { - struct nand_flash_s *nand; + NANDFlashState *nand; unsigned int rdy:1; unsigned int ale:1; unsigned int cle:1; |