summaryrefslogtreecommitdiffstats
path: root/hw/shix.c
diff options
context:
space:
mode:
authorAnthony Liguori2009-05-21 01:38:09 +0200
committerAnthony Liguori2009-05-21 15:47:55 +0200
commitf80f9ec9a63bb2200d614feb658a77b78f9a4bba (patch)
tree59e22e0a617e392a65431b82256fb443aa6ad850 /hw/shix.c
parentEliminate --disable-gfx-check and make VNC default when SDL not available (diff)
downloadqemu-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/shix.c')
-rw-r--r--hw/shix.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/hw/shix.c b/hw/shix.c
index 9277be07d0..eeee6bbc43 100644
--- a/hw/shix.c
+++ b/hw/shix.c
@@ -88,8 +88,15 @@ static void shix_init(ram_addr_t ram_size,
fprintf(stderr, "initialization terminated\n");
}
-QEMUMachine shix_machine = {
+static QEMUMachine shix_machine = {
.name = "shix",
.desc = "shix card",
.init = shix_init,
};
+
+static void shix_machine_init(void)
+{
+ qemu_register_machine(&shix_machine);
+}
+
+machine_init(shix_machine_init);