diff options
Diffstat (limited to 'hw/sb16.c')
| -rw-r--r-- | hw/sb16.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/hw/sb16.c b/hw/sb16.c index db8929b98e..c81455d7f3 100644 --- a/hw/sb16.c +++ b/hw/sb16.c @@ -1417,8 +1417,9 @@ static TypeInfo sb16_info = { .class_init = sb16_class_initfn, }; -static void sb16_register (void) +static void sb16_register_types (void) { type_register_static (&sb16_info); } -device_init (sb16_register) + +type_init (sb16_register_types) |