git: c18d676d53cc - stable/13 - vmd: Add 8086:A77F PCI ID for all Intel Raptor Lake SKUs
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 03 Aug 2022 03:49:44 UTC
The branch stable/13 has been updated by nc (ports committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=c18d676d53cc5f0ab47d3ae8b6031c68c1317697
commit c18d676d53cc5f0ab47d3ae8b6031c68c1317697
Author: Neel Chauhan <nc@FreeBSD.org>
AuthorDate: 2022-07-29 18:06:06 +0000
Commit: Neel Chauhan <nc@FreeBSD.org>
CommitDate: 2022-08-03 03:49:41 +0000
vmd: Add 8086:A77F PCI ID for all Intel Raptor Lake SKUs
Summary:
This is based on the Linux kernel commit
922bfd001d1ac02111ebbe0524aaab6ca7925521.
Reviewed by: mav (src)
MFC after: 3 days
Differential Revision: https://reviews.freebsd.org/D35996
(cherry picked from commit b07a48d4f3a175db53ba21a40f27ef0c1a6d0a11)
---
sys/dev/vmd/vmd.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sys/dev/vmd/vmd.c b/sys/dev/vmd/vmd.c
index 72146a7d16df..08fac27d3037 100644
--- a/sys/dev/vmd/vmd.c
+++ b/sys/dev/vmd/vmd.c
@@ -101,6 +101,7 @@ static struct vmd_type vmd_devs[] = {
{ 0x8086, 0x467f, "Intel Volume Management Device", BUS_RESTRICT | VECTOR_OFFSET },
{ 0x8086, 0x4c3d, "Intel Volume Management Device", BUS_RESTRICT | VECTOR_OFFSET },
{ 0x8086, 0x9a0b, "Intel Volume Management Device", BUS_RESTRICT | VECTOR_OFFSET },
+ { 0x8086, 0xa77f, "Intel Volume Management Device", BUS_RESTRICT | VECTOR_OFFSET },
{ 0, 0, NULL, 0 }
};