git: 5804b7ab378d - main - superio: Add device ID for ITE IT8613

From: Ed Maste <emaste_at_FreeBSD.org>
Date: Thu, 25 May 2023 15:20:03 UTC
The branch main has been updated by emaste:

URL: https://cgit.FreeBSD.org/src/commit/?id=5804b7ab378d6207130bd1685c931da6a4e76e55

commit 5804b7ab378d6207130bd1685c931da6a4e76e55
Author:     Johannes Totz <jo@bruelltuete.com>
AuthorDate: 2023-05-25 14:23:06 +0000
Commit:     Ed Maste <emaste@FreeBSD.org>
CommitDate: 2023-05-25 15:06:51 +0000

    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,