git: 1a78f5ae3917 - main - aq(4): probe the D100 device ID

From: Nick Price <nprice_at_FreeBSD.org>
Date: Sun, 16 Aug 2026 17:05:46 UTC
The branch main has been updated by nprice:

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

commit 1a78f5ae3917b770bd958010dae86574b15d97ff
Author:     Nick Price <nprice@FreeBSD.org>
AuthorDate: 2026-08-15 02:05:07 +0000
Commit:     Nick Price <nprice@FreeBSD.org>
CommitDate: 2026-08-16 17:04:20 +0000

    aq(4): probe the D100 device ID
    
    The D100 device ID was defined and handled by aq_hw_capabilities(), but
    had no entry in aq_vendor_info_array[], so the driver never probed it and
    the card was left unattached.  Add the missing entry; the table lists the
    fibre variant last within each group, so it follows D109 rather than
    sorting numerically.
    
    Signed-off-by: Nick Price <nprice@FreeBSD.org>
    Accepted-by: adrian
    Approved-by: adrian
    (cherry picked from commit 4976b1d24abd6ff660e60041d1990b22c0bc2e5b)
---
 sys/dev/aq/aq_main.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sys/dev/aq/aq_main.c b/sys/dev/aq/aq_main.c
index bde0b71cd458..9910c89d1c37 100644
--- a/sys/dev/aq/aq_main.c
+++ b/sys/dev/aq/aq_main.c
@@ -109,6 +109,8 @@ static pci_vendor_info_t aq_vendor_info_array[] = {
 	    "Aquantia AQtion 5Gbit Network Adapter"),
 	PVID(AQUANTIA_VENDOR_ID, AQ_DEVICE_ID_D109,
 	    "Aquantia AQtion 2.5Gbit Network Adapter"),
+	PVID(AQUANTIA_VENDOR_ID, AQ_DEVICE_ID_D100,
+	    "Aquantia AQtion 10Gbit Network Adapter"),
 
 	PVID(AQUANTIA_VENDOR_ID, AQ_DEVICE_ID_AQC107,
 	    "Aquantia AQtion 10Gbit Network Adapter"),