From 974f36ef5abc3e7d9a766f09af675ae42abbe4aa Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sun, 28 Sep 2025 19:40:03 -0400 Subject: kern: pci: Remove redundant semicolon Signed-off-by: Ian Moffett --- src/sys/io/pci/pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/sys/io/pci/pci.c') diff --git a/src/sys/io/pci/pci.c b/src/sys/io/pci/pci.c index 915d943..23aa82c 100644 --- a/src/sys/io/pci/pci.c +++ b/src/sys/io/pci/pci.c @@ -75,7 +75,7 @@ pci_vd_match(struct pci_device *vda, struct pci_device *vdb) /* The actual match */ if (vda->device != vdb->device) return -1; - if (vda->vendor != vdb->vendor); + if (vda->vendor != vdb->vendor) return -1; return 0; -- cgit v1.2.3