Date: Wed, 14 Apr 2021 00:58:56 GMT From: Vladimir Kondratyev <wulf@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: fb451895fba7 - main - ichsmb: Add PCI ID for Intel Gemini Lake SMBus controller Message-ID: <202104140058.13E0wu17051560@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by wulf: URL: https://cgit.FreeBSD.org/src/commit/?id=fb451895fba7dee139594c722adb5f79af154341 commit fb451895fba7dee139594c722adb5f79af154341 Author: Vladimir Kondratyev <wulf@FreeBSD.org> AuthorDate: 2021-04-13 22:10:13 +0000 Commit: Vladimir Kondratyev <wulf@FreeBSD.org> CommitDate: 2021-04-14 00:58:07 +0000 ichsmb: Add PCI ID for Intel Gemini Lake SMBus controller Submitted by: Dmitry Luhtionov <dmitryluhtionov@gmail.com> MFC after: 2 weeks --- sys/dev/ichsmb/ichsmb_pci.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys/dev/ichsmb/ichsmb_pci.c b/sys/dev/ichsmb/ichsmb_pci.c index ff4b287dd020..51049643ae15 100644 --- a/sys/dev/ichsmb/ichsmb_pci.c +++ b/sys/dev/ichsmb/ichsmb_pci.c @@ -109,6 +109,7 @@ __FBSDID("$FreeBSD$"); #define ID_COMETLAKE2 0x06a3 #define ID_TIGERLAKE 0xa0a3 #define ID_TIGERLAKE2 0x43a3 +#define ID_GEMINILAKE 0x31d4 static const struct pci_device_table ichsmb_devices[] = { { PCI_DEV(PCI_VENDOR_INTEL, ID_82801AA), @@ -199,6 +200,8 @@ static const struct pci_device_table ichsmb_devices[] = { PCI_DESCR("Intel Tiger Lake SMBus controller") }, { PCI_DEV(PCI_VENDOR_INTEL, ID_TIGERLAKE2), PCI_DESCR("Intel Tiger Lake SMBus controller") }, + { PCI_DEV(PCI_VENDOR_INTEL, ID_GEMINILAKE), + PCI_DESCR("Intel Gemini Lake SMBus controller") }, }; /* Internal functions */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202104140058.13E0wu17051560>