diff options
author | Anthony Liguori | 2009-05-21 01:38:09 +0200 |
---|---|---|
committer | Anthony Liguori | 2009-05-21 15:47:55 +0200 |
commit | f80f9ec9a63bb2200d614feb658a77b78f9a4bba (patch) | |
tree | 59e22e0a617e392a65431b82256fb443aa6ad850 /hw/etraxfs.c | |
parent | Eliminate --disable-gfx-check and make VNC default when SDL not available (diff) | |
download | qemu-f80f9ec9a63bb2200d614feb658a77b78f9a4bba.tar.gz qemu-f80f9ec9a63bb2200d614feb658a77b78f9a4bba.tar.xz qemu-f80f9ec9a63bb2200d614feb658a77b78f9a4bba.zip |
Convert machine registration to use module init functions
This cleans up quite a lot of #ifdefs, extern variables, and other ugliness.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/etraxfs.c')
-rw-r--r-- | hw/etraxfs.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/hw/etraxfs.c b/hw/etraxfs.c index 9cdf41cb32..27205ad579 100644 --- a/hw/etraxfs.c +++ b/hw/etraxfs.c @@ -158,8 +158,15 @@ void bareetraxfs_init (ram_addr_t ram_size, printf ("ram size =%ld\n", ram_size); } -QEMUMachine bareetraxfs_machine = { +static QEMUMachine bareetraxfs_machine = { .name = "bareetraxfs", .desc = "Bare ETRAX FS board", .init = bareetraxfs_init, }; + +static void bareetraxfs_machine_init(void) +{ + qemu_register_machine(&bareetraxfs_machine); +} + +machine_init(bareetraxfs_machine_init); |