diff options
Diffstat (limited to 'hw/gus.c')
| -rw-r--r-- | hw/gus.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/hw/gus.c b/hw/gus.c index 20547075ec..840d098d6a 100644 --- a/hw/gus.c +++ b/hw/gus.c @@ -324,8 +324,9 @@ static TypeInfo gus_info = { .class_init = gus_class_initfn, }; -static void gus_register (void) +static void gus_register_types (void) { type_register_static (&gus_info); } -device_init (gus_register) + +type_init (gus_register_types) |