This commit is contained in:
Jasmine Iwanek
2022-03-13 09:15:11 -04:00
parent c5d1a7b456
commit 66a687d68d
10 changed files with 411 additions and 342 deletions

View File

@@ -409,18 +409,16 @@ usb_init(const device_t *info)
return dev;
}
const device_t usb_device =
{
"Universal Serial Bus",
"usb",
DEVICE_PCI,
0,
usb_init,
usb_close,
usb_reset,
{ NULL },
NULL,
NULL,
NULL
const device_t usb_device = {
.name = "Universal Serial Bus",
.internal_name = "usb",
.flags = DEVICE_PCI,
.local = 0,
.init = usb_init,
.close = usb_close,
.reset = usb_reset,
{ .available = NULL },
.speed_changed = NULL,
.force_redraw = NULL,
.config = NULL
};