This commit is contained in:
Jasmine Iwanek
2022-03-13 09:57:57 -04:00
parent 98be04c955
commit a61379eaee
23 changed files with 688 additions and 502 deletions

View File

@@ -604,11 +604,15 @@ fdc37c67x_init(const device_t *info)
const device_t fdc37c67x_device = {
"SMC FDC37C67X Super I/O",
"fdc37c67x",
0,
0x40,
fdc37c67x_init, fdc37c67x_close, NULL,
{ NULL }, NULL, NULL,
NULL
.name = "SMC FDC37C67X Super I/O",
.internal_name = "fdc37c67x",
.flags = 0,
.local = 0x40,
.init = fdc37c67x_init,
.close = fdc37c67x_close,
.reset = NULL,
{ .available = NULL },
.speed_changed = NULL,
.force_redraw = NULL,
.config = NULL
};