git: e71677cfb37d - stable/15 - sys: Use is_pci_device instead of checking device or devclass names

From: John Baldwin <jhb_at_FreeBSD.org>
Date: Tue, 23 Jun 2026 16:28:29 UTC
The branch stable/15 has been updated by jhb:

URL: https://cgit.FreeBSD.org/src/commit/?id=e71677cfb37d83e9f65effbe635f241c75b19743

commit e71677cfb37d83e9f65effbe635f241c75b19743
Author:     John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2026-05-18 18:52:39 +0000
Commit:     John Baldwin <jhb@FreeBSD.org>
CommitDate: 2026-06-23 16:17:31 +0000

    sys: Use is_pci_device instead of checking device or devclass names
    
    Reviewed by:    bz, imp
    Sponsored by:   Chelsio Communications
    Differential Revision:  https://reviews.freebsd.org/D56998
    
    (cherry picked from commit be4f245e1e4fe60d43aaff5b11b45f2a9a66a51c)
---
 sys/dev/sound/pcm/ac97.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/sound/pcm/ac97.c b/sys/dev/sound/pcm/ac97.c
index 1407d202a0d1..ec742ccbbfaa 100644
--- a/sys/dev/sound/pcm/ac97.c
+++ b/sys/dev/sound/pcm/ac97.c
@@ -628,7 +628,7 @@ ac97_initmixer(struct ac97_info *codec)
 	}
 
 	pdev = codec->dev;
-	while (strcmp(device_get_name(device_get_parent(pdev)), "pci") != 0) {
+	while (!is_pci_device(pdev)) {
 		/* find the top-level PCI device handler */
 		pdev = device_get_parent(pdev);
 	}