diff options
author | Jack Wu <wojackbb@gmail.com> | 2024-07-16 05:49:02 +0300 |
---|---|---|
committer | Paolo Abeni <pabeni@redhat.com> | 2024-07-18 12:22:45 +0300 |
commit | a1a305375dc356865b22a43cbe09869bf8fae9ca (patch) | |
tree | b7c8c3dc14cbdd66c7925aa553b3e3a00e0bc926 | |
parent | ab1a2a52885a922687822f6615078d2de25dfe38 (diff) | |
download | linux-a1a305375dc356865b22a43cbe09869bf8fae9ca.tar.xz |
net: wwan: t7xx: add support for Dell DW5933e
add support for Dell DW5933e (0x14c0, 0x4d75)
Signed-off-by: Jack Wu <wojackbb@gmail.com>
Link: https://patch.msgid.link/20240716024902.16054-1-wojackbb@gmail.com
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
-rw-r--r-- | drivers/net/wwan/t7xx/t7xx_pci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wwan/t7xx/t7xx_pci.c b/drivers/net/wwan/t7xx/t7xx_pci.c index e0b1e7a616ca..10a8c1080b10 100644 --- a/drivers/net/wwan/t7xx/t7xx_pci.c +++ b/drivers/net/wwan/t7xx/t7xx_pci.c @@ -852,6 +852,7 @@ static void t7xx_pci_remove(struct pci_dev *pdev) static const struct pci_device_id t7xx_pci_table[] = { { PCI_DEVICE(PCI_VENDOR_ID_MEDIATEK, 0x4d75) }, + { PCI_DEVICE(0x14c0, 0x4d75) }, // Dell DW5933e { } }; MODULE_DEVICE_TABLE(pci, t7xx_pci_table); |