diff options
author | Jonathan Matthew <jmatthew@cvs.openbsd.org> | 2024-04-11 06:42:13 +0000 |
---|---|---|
committer | Jonathan Matthew <jmatthew@cvs.openbsd.org> | 2024-04-11 06:42:13 +0000 |
commit | a1fcbc8575f60b9c7e0df2223f84ca1157165a1a (patch) | |
tree | 849065c7b7b7bba73890fbba6f58d44764add3b9 | |
parent | fb338036b19645d77f9cca4a0daff3e1545c5e7e (diff) |
Match on ConnectX-6 virtual functions too, since they don't seem to be
any different to earlier revisions.
from Brad
-rw-r--r-- | sys/dev/pci/if_mcx.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/if_mcx.c b/sys/dev/pci/if_mcx.c index c4a83a68edb..69049e2a3dd 100644 --- a/sys/dev/pci/if_mcx.c +++ b/sys/dev/pci/if_mcx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_mcx.c,v 1.112 2024/04/11 05:30:55 jmatthew Exp $ */ +/* $OpenBSD: if_mcx.c,v 1.113 2024/04/11 06:42:12 jmatthew Exp $ */ /* * Copyright (c) 2017 David Gwynne <dlg@openbsd.org> @@ -2673,6 +2673,7 @@ static const struct pci_matchid mcx_devices[] = { { PCI_VENDOR_MELLANOX, PCI_PRODUCT_MELLANOX_MT28800 }, { PCI_VENDOR_MELLANOX, PCI_PRODUCT_MELLANOX_MT28800VF }, { PCI_VENDOR_MELLANOX, PCI_PRODUCT_MELLANOX_MT28908 }, + { PCI_VENDOR_MELLANOX, PCI_PRODUCT_MELLANOX_MT28908VF }, { PCI_VENDOR_MELLANOX, PCI_PRODUCT_MELLANOX_MT2892 }, { PCI_VENDOR_MELLANOX, PCI_PRODUCT_MELLANOX_MT2894 }, }; |