From 5804b7ab378d6207130bd1685c931da6a4e76e55 Mon Sep 17 00:00:00 2001 From: Johannes Totz Date: Thu, 25 May 2023 10:23:06 -0400 Subject: [PATCH] superio: Add device ID for ITE IT8613 Reviewed by: emaste Differential Revision: https://reviews.freebsd.org/D39969 --- sys/dev/superio/superio.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sys/dev/superio/superio.c b/sys/dev/superio/superio.c index 37b8d24dd375..6f2e44450681 100644 --- a/sys/dev/superio/superio.c +++ b/sys/dev/superio/superio.c @@ -295,6 +295,10 @@ static const struct { const char *descr; const struct sio_device *devices; } superio_table[] = { + { + .vendor = SUPERIO_VENDOR_ITE, .devid = 0x8613, + .devices = ite_devices, + }, { .vendor = SUPERIO_VENDOR_ITE, .devid = 0x8712, .devices = ite_devices,