Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 25 May 2023 15:20:03 GMT
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 5804b7ab378d - main - superio: Add device ID for ITE IT8613
Message-ID:  <202305251520.34PFK33h049084@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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,



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202305251520.34PFK33h049084>