clean up device_config_t formatting

This commit is contained in:
Jasmine Iwanek
2022-02-26 23:31:28 -05:00
parent f4587949a7
commit 801f81fbda
61 changed files with 2679 additions and 4300 deletions

View File

@@ -186,10 +186,10 @@ const device_t vga_device =
"VGA",
"vga",
DEVICE_ISA,
0,
0,
vga_init,
vga_close,
NULL,
NULL,
{ vga_available },
vga_speed_changed,
vga_force_redraw,
@@ -201,10 +201,10 @@ const device_t ps1vga_device =
"PS/1 VGA",
"ps1vga",
DEVICE_ISA,
0,
0,
ps1vga_init,
vga_close,
NULL,
NULL,
{ vga_available },
vga_speed_changed,
vga_force_redraw,
@@ -216,10 +216,10 @@ const device_t ps1vga_mca_device =
"PS/1 VGA",
"ps1vga_mca",
DEVICE_MCA,
0,
0,
ps1vga_init,
vga_close,
NULL,
NULL,
{ vga_available },
vga_speed_changed,
vga_force_redraw,