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

@@ -3813,7 +3813,7 @@ const device_t xga_device = {
.init = xga_init,
.close = xga_close,
.reset = xga_reset,
{ .available = xga_available },
.available = xga_available,
.speed_changed = xga_speed_changed,
.force_redraw = xga_force_redraw,
.config = xga_mca_configuration
@@ -3827,7 +3827,7 @@ const device_t xga_isa_device = {
.init = xga_init,
.close = xga_close,
.reset = xga_reset,
{ .available = xga_available },
.available = xga_available,
.speed_changed = xga_speed_changed,
.force_redraw = xga_force_redraw,
.config = xga_isa_configuration
@@ -3841,7 +3841,7 @@ const device_t inmos_isa_device = {
.init = svga_xga_init,
.close = xga_close,
.reset = xga_reset,
{ .available = inmos_xga_available },
.available = inmos_xga_available,
.speed_changed = xga_speed_changed,
.force_redraw = xga_force_redraw,
.config = xga_inmos_isa_configuration