diff options
Diffstat (limited to 'hw/tosa.c')
| -rw-r--r-- | hw/tosa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/tosa.c b/hw/tosa.c index c0d401759e..6baa17d6b5 100644 --- a/hw/tosa.c +++ b/hw/tosa.c @@ -291,10 +291,10 @@ static TypeInfo tosa_ssp_info = { .class_init = tosa_ssp_class_init, }; -static void tosa_register_devices(void) +static void tosa_register_types(void) { type_register_static(&tosa_dac_info); type_register_static(&tosa_ssp_info); } -device_init(tosa_register_devices) +type_init(tosa_register_types) |