Switch more device_t's to named initializers

Fixes "missing braces around initializer" warnings
This commit is contained in:
Alexander Babikov
2023-02-28 12:23:59 +05:00
parent 875a9fe373
commit 5653ae85d9
3 changed files with 25 additions and 25 deletions

View File

@@ -338,9 +338,9 @@ const device_t fdc37c669_370_device = {
.internal_name = "fdc37c669_370",
.flags = 0,
.local = 1,
fdc37c669_init,
fdc37c669_close,
.reset = NULL,
.init = fdc37c669_init,
.close = fdc37c669_close,
.reset = NULL,
{ .available = NULL },
.speed_changed = NULL,
.force_redraw = NULL,