git: af6139be560a - stable/15 - aq(4): probe the D100 device ID
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 31 Aug 2026 18:09:19 UTC
The branch stable/15 has been updated by emaste:
URL: https://cgit.FreeBSD.org/src/commit/?id=af6139be560aec9bb76c0dbaf4724551a5125882
commit af6139be560aec9bb76c0dbaf4724551a5125882
Author: Nick Price <nprice@FreeBSD.org>
AuthorDate: 2026-08-15 02:05:07 +0000
Commit: Ed Maste <emaste@FreeBSD.org>
CommitDate: 2026-08-31 18:08:40 +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 1a78f5ae3917b770bd958010dae86574b15d97ff)
---
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"),