Clean up .available & .poll

This commit is contained in:
Jasmine Iwanek
2025-01-07 01:12:42 -05:00
parent de488fe779
commit 81b8038bc5
254 changed files with 1214 additions and 1313 deletions

View File

@@ -1731,7 +1731,7 @@ static const device_config_t v7_vga_1024i_config[] = {
{ .description = "" }
}
},
{ .type = CONFIG_END }
{ .name = "", .description = "", .type = CONFIG_END }
};
static const device_config_t ht216_32_standalone_config[] = {
@@ -1748,7 +1748,7 @@ static const device_config_t ht216_32_standalone_config[] = {
{ .description = "" }
}
},
{ .type = CONFIG_END }
{ .name = "", .description = "", .type = CONFIG_END }
};
// clang-format on
@@ -1760,7 +1760,7 @@ const device_t g2_gc205_device = {
.init = g2_gc205_init,
.close = ht216_close,
.reset = NULL,
{ .available = g2_gc205_available },
.available = g2_gc205_available,
.speed_changed = ht216_speed_changed,
.force_redraw = ht216_force_redraw,
.config = NULL
@@ -1774,7 +1774,7 @@ const device_t v7_vga_1024i_device = {
.init = v7_vga_1024i_init,
.close = ht216_close,
.reset = NULL,
{ .available = v7_vga_1024i_available },
.available = v7_vga_1024i_available,
.speed_changed = ht216_speed_changed,
.force_redraw = ht216_force_redraw,
.config = v7_vga_1024i_config
@@ -1788,7 +1788,7 @@ const device_t ht216_32_pb410a_device = {
.init = ht216_pb410a_init,
.close = ht216_close,
.reset = NULL,
{ .available = NULL },
.available = NULL,
.speed_changed = ht216_speed_changed,
.force_redraw = ht216_force_redraw,
.config = NULL
@@ -1802,7 +1802,7 @@ const device_t ht216_32_standalone_device = {
.init = ht216_standalone_init,
.close = ht216_close,
.reset = NULL,
{ .available = ht216_standalone_available },
.available = ht216_standalone_available,
.speed_changed = ht216_speed_changed,
.force_redraw = ht216_force_redraw,
.config = ht216_32_standalone_config
@@ -1816,7 +1816,7 @@ const device_t radius_svga_multiview_isa_device = {
.init = radius_svga_multiview_init,
.close = ht216_close,
.reset = NULL,
{ .available = radius_svga_multiview_available },
.available = radius_svga_multiview_available,
.speed_changed = ht216_speed_changed,
.force_redraw = ht216_force_redraw,
.config = NULL
@@ -1830,7 +1830,7 @@ const device_t radius_svga_multiview_mca_device = {
.init = radius_svga_multiview_init,
.close = ht216_close,
.reset = NULL,
{ .available = radius_svga_multiview_available },
.available = radius_svga_multiview_available,
.speed_changed = ht216_speed_changed,
.force_redraw = ht216_force_redraw,
.config = NULL