Message ID | 1516526083-31389-2-git-send-email-merez@codeaurora.org (mailing list archive) |
---|---|
State | Accepted |
Commit | 10cd2d45f6c792abfc7adbed2c67b4907d1d7078 |
Delegated to: | Kalle Valo |
Headers | show |
Maya Erez <merez@codeaurora.org> wrote: > PCIe device ID has changed in Talyn. > Add this ID to wil6210_pcie_ids list to allow > recognition of Talyn device. > > Signed-off-by: Maya Erez <merez@codeaurora.org> > Signed-off-by: Kalle Valo <kvalo@codeaurora.org> 8 patches applied to ath-next branch of ath.git, thanks. 10cd2d45f6c7 wil6210: add Talyn PCIe device ID 4fe1fccecf87 wil6210: recognize Talyn JTAG ID 4276d7711e7c wil6210: add support for Talyn AHB address map 2a0efe6a32ac wil6210: support flashless device b8e13b87b15d wil6210: configure OTP HW vectors in SW reset flow 70bcc658c0b1 wil6210: fix random failure to bring network interface up 54fca595d1ee wil6210: enlarge FW mac_rgf_ext section for Sparrow D0 81b35afa49c8 wil6210: support parsing brd file address from fw file
diff --git a/drivers/net/wireless/ath/wil6210/pcie_bus.c b/drivers/net/wireless/ath/wil6210/pcie_bus.c index 0c401bf..f8c7a6b 100644 --- a/drivers/net/wireless/ath/wil6210/pcie_bus.c +++ b/drivers/net/wireless/ath/wil6210/pcie_bus.c @@ -1,5 +1,6 @@ /* * Copyright (c) 2012-2017 Qualcomm Atheros, Inc. + * Copyright (c) 2018, The Linux Foundation. All rights reserved. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -378,6 +379,7 @@ static void wil_pcie_remove(struct pci_dev *pdev) static const struct pci_device_id wil6210_pcie_ids[] = { { PCI_DEVICE(0x1ae9, 0x0310) }, { PCI_DEVICE(0x1ae9, 0x0302) }, /* same as above, firmware broken */ + { PCI_DEVICE(0x17cb, 0x1201) }, /* Talyn */ { /* end: all zeroes */ }, }; MODULE_DEVICE_TABLE(pci, wil6210_pcie_ids);
PCIe device ID has changed in Talyn. Add this ID to wil6210_pcie_ids list to allow recognition of Talyn device. Signed-off-by: Maya Erez <merez@codeaurora.org> --- drivers/net/wireless/ath/wil6210/pcie_bus.c | 2 ++ 1 file changed, 2 insertions(+)