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

@@ -108,11 +108,15 @@ sio_detect_init(const device_t *info)
const device_t sio_detect_device = {
"Super I/O Detection Helper",
"sio_detect",
0,
0,
sio_detect_init, sio_detect_close, NULL,
{ NULL }, NULL, NULL,
NULL
.name = "Super I/O Detection Helper",
.internal_name = "sio_detect",
.flags = 0,
.local = 0,
.init = sio_detect_init,
.close = sio_detect_close,
.reset = NULL,
{ .available = NULL },
.speed_changed = NULL,
.force_redraw = NULL,
.config = NULL
};