Message ID | 20241217-tn9510-v3a-v3-7-4d5ef6f686e0@gmx.net (mailing list archive) |
---|---|
State | Superseded |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | net: tn40xx: add support for AQR105 based cards | expand |
On Tue, Dec 17, 2024 at 10:07:38PM +0100, Hans-Frieder Vogt via B4 Relay wrote: > From: Hans-Frieder Vogt <hfdevel@gmx.net> > > Add the PCI-ID of the AQR105-based Tehuti TN4010 cards to allow loading > of the tn40xx driver on these cards. Here, I chose the detailed definition > with the subvendor ID similar to the QT2025 cards with the PCI-ID > TEHUTI:0x4022, because there is a card with an AQ2104 hiding amongst the > AQR105 cards, and they all come with the same PCI-ID (TEHUTI:0x4025). But > the AQ2104 is currently not supported. > > Signed-off-by: Hans-Frieder Vogt <hfdevel@gmx.net> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Andrew
On Tue, 17 Dec 2024 22:07:38 +0100 Hans-Frieder Vogt via B4 Relay <devnull+hfdevel.gmx.net@kernel.org> wrote: > From: Hans-Frieder Vogt <hfdevel@gmx.net> > > Add the PCI-ID of the AQR105-based Tehuti TN4010 cards to allow loading > of the tn40xx driver on these cards. Here, I chose the detailed definition > with the subvendor ID similar to the QT2025 cards with the PCI-ID > TEHUTI:0x4022, because there is a card with an AQ2104 hiding amongst the > AQR105 cards, and they all come with the same PCI-ID (TEHUTI:0x4025). But > the AQ2104 is currently not supported. > > Signed-off-by: Hans-Frieder Vogt <hfdevel@gmx.net> > --- > drivers/net/ethernet/tehuti/tn40.c | 4 ++++ > 1 file changed, 4 insertions(+) Reviewed-by: FUJITA Tomonori <fujita.tomonori@gmail.com>
diff --git a/drivers/net/ethernet/tehuti/tn40.c b/drivers/net/ethernet/tehuti/tn40.c index 5f73eb1f7d9f74294cd5546c2ef4797ebc24c052..2f4e0dad388f84d6daf651d67ef99c6f62244586 100644 --- a/drivers/net/ethernet/tehuti/tn40.c +++ b/drivers/net/ethernet/tehuti/tn40.c @@ -1840,6 +1840,10 @@ static const struct pci_device_id tn40_id_table[] = { PCI_VENDOR_ID_ASUSTEK, 0x8709) }, { PCI_DEVICE_SUB(PCI_VENDOR_ID_TEHUTI, 0x4022, PCI_VENDOR_ID_EDIMAX, 0x8103) }, + { PCI_DEVICE_SUB(PCI_VENDOR_ID_TEHUTI, 0x4025, + PCI_VENDOR_ID_TEHUTI, 0x3015) }, + { PCI_DEVICE_SUB(PCI_VENDOR_ID_TEHUTI, 0x4025, + PCI_VENDOR_ID_EDIMAX, 0x8102) }, { } };