This commit is contained in:
Jasmine Iwanek
2022-03-13 09:37:19 -04:00
parent a7edaf0608
commit 369f6774f9
12 changed files with 424 additions and 271 deletions

View File

@@ -587,15 +587,15 @@ static void
const device_t sff8038i_device =
{
"SFF-8038i IDE Bus Master",
"sff8038i",
DEVICE_PCI,
0,
sff_init,
sff_close,
sff_reset,
{ NULL },
NULL,
NULL,
NULL
.name = "SFF-8038i IDE Bus Master",
.internal_name = "sff8038i",
.flags = DEVICE_PCI,
.local = 0,
.init = sff_init,
.close = sff_close,
.reset = sff_reset,
{ .available = NULL },
.speed_changed = NULL,
.force_redraw = NULL,
.config = NULL
};