diff options
author | Paul Brook <paul@codesourcery.com> | 2009-05-10 01:44:56 +0100 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2009-05-10 01:44:56 +0100 |
commit | 0d6800d7e35b7f6aa22467b261f8c8aad6bf4a2d (patch) | |
tree | 6df682b479f89863159f836e1dc292623ab577e1 /hw/gumstix.c | |
parent | f84d20b49f4ded50a7564ec5c1b3278b63a6c1b4 (diff) | |
download | qemu-0d6800d7e35b7f6aa22467b261f8c8aad6bf4a2d.tar.gz qemu-0d6800d7e35b7f6aa22467b261f8c8aad6bf4a2d.tar.bz2 qemu-0d6800d7e35b7f6aa22467b261f8c8aad6bf4a2d.zip |
Follow coding conventions
Remove explicit struct qualifiers and rename structure types.
Signed-off-by: Paul Brook <paul@codesourcery.com>
Diffstat (limited to 'hw/gumstix.c')
-rw-r--r-- | hw/gumstix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/gumstix.c b/hw/gumstix.c index cce86fba69..d116126d15 100644 --- a/hw/gumstix.c +++ b/hw/gumstix.c @@ -46,7 +46,7 @@ static void connex_init(ram_addr_t ram_size, int vga_ram_size, const char *kernel_filename, const char *kernel_cmdline, const char *initrd_filename, const char *cpu_model) { - struct pxa2xx_state_s *cpu; + PXA2xxState *cpu; int index; uint32_t connex_rom = 0x01000000; @@ -80,7 +80,7 @@ static void verdex_init(ram_addr_t ram_size, int vga_ram_size, const char *kernel_filename, const char *kernel_cmdline, const char *initrd_filename, const char *cpu_model) { - struct pxa2xx_state_s *cpu; + PXA2xxState *cpu; int index; uint32_t verdex_rom = 0x02000000; |