Commit b2ee0ce237ea9eeaa2629ce27ead9321cf929b2a
1 parent
190cd021
Add named initializers.
Signed-off-by: Paul Brook <paul@codesourcery.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7091 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
3 additions
and
3 deletions
hw/ppc405_boards.c
... | ... | @@ -626,7 +626,7 @@ static void taihu_405ep_init(ram_addr_t ram_size, int vga_ram_size, |
626 | 626 | } |
627 | 627 | |
628 | 628 | QEMUMachine taihu_machine = { |
629 | - "taihu", | |
630 | - "taihu", | |
631 | - taihu_405ep_init, | |
629 | + .name = "taihu", | |
630 | + .desc = "taihu", | |
631 | + .init = taihu_405ep_init, | |
632 | 632 | }; | ... | ... |