From 3072e24c09f80c0fb7948f70a73647c9e6328961 Mon Sep 17 00:00:00 2001 From: brynet Date: Wed, 7 Aug 2024 17:39:00 +0000 Subject: [PATCH] Attach ksmn(4) on 19h/7x devices Tested on: cpu0: AMD Ryzen 7 PRO 8700GE w/ Radeon 780M Graphics, 3650.01 MHz, 19-75-02, patch 0a705205 Thanks to Jan (@js@x0r.be on mastodon) for testing. "Sure" deraadt@ --- sys/dev/pci/ksmn.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/dev/pci/ksmn.c b/sys/dev/pci/ksmn.c index e5720449147..8b0204584b5 100644 --- a/sys/dev/pci/ksmn.c +++ b/sys/dev/pci/ksmn.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ksmn.c,v 1.9 2023/09/05 13:06:01 stsp Exp $ */ +/* $OpenBSD: ksmn.c,v 1.10 2024/08/07 17:39:00 brynet Exp $ */ /* * Copyright (c) 2019 Bryan Steele @@ -107,6 +107,7 @@ static const struct pci_matchid ksmn_devices[] = { { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_17_6X_RC }, { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_19_4X_RC }, { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_19_6X_RC }, + { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_19_7X_RC }, }; int -- 2.20.1