diff options
author | Joshua Stein <jcs@cvs.openbsd.org> | 2021-07-20 18:34:00 +0000 |
---|---|---|
committer | Joshua Stein <jcs@cvs.openbsd.org> | 2021-07-20 18:34:00 +0000 |
commit | 8c0591ca00318a3db95164b94e0e84ea5939a92a (patch) | |
tree | 6c4583c2a139a8694e33251e870d2a8210f2c043 /sys/dev/pci/ksmn.c | |
parent | 18e5aeb40e7031e3c399f274093947d1637cc719 (diff) |
add AMD 17h/6xh Root Complex
ok brynet
Diffstat (limited to 'sys/dev/pci/ksmn.c')
-rw-r--r-- | sys/dev/pci/ksmn.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/pci/ksmn.c b/sys/dev/pci/ksmn.c index 39ea077c861..a9a639282be 100644 --- a/sys/dev/pci/ksmn.c +++ b/sys/dev/pci/ksmn.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ksmn.c,v 1.4 2020/01/04 01:34:24 jsg Exp $ */ +/* $OpenBSD: ksmn.c,v 1.5 2021/07/20 18:33:59 jcs Exp $ */ /* * Copyright (c) 2019 Bryan Steele <brynet@openbsd.org> @@ -95,7 +95,8 @@ struct cfdriver ksmn_cd = { static const struct pci_matchid ksmn_devices[] = { { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_17_RC }, { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_17_1X_RC }, - { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_17_3X_RC } + { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_17_3X_RC }, + { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_17_6X_RC }, }; int |