diff options
Diffstat (limited to 'hw/esp.c')
| -rw-r--r-- | hw/esp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/esp.c b/hw/esp.c index 2f44386233..2dda8e358e 100644 --- a/hw/esp.c +++ b/hw/esp.c @@ -775,9 +775,9 @@ static TypeInfo esp_info = { .class_init = esp_class_init, }; -static void esp_register_devices(void) +static void esp_register_types(void) { type_register_static(&esp_info); } -device_init(esp_register_devices) +type_init(esp_register_types) |