Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1445546
| From | Alex Williamson <alex.williamson@redhat.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] pci: Add DMA alias quirk for Adaptec 3805 |
| Date | 2016-07-18 16:40 +0200 |
| Message-ID | <rWhSa-7qj-17@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Just like the 3405 quirk added in commit d3d2ab43ddae ("PCI: Add DMA
alias quirk for Adaptec 3405").
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Link: https://www.redhat.com/archives/vfio-users/2016-July/msg00046.html
---
drivers/pci/quirks.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
index 98b0af0..b69321c 100644
--- a/drivers/pci/quirks.c
+++ b/drivers/pci/quirks.c
@@ -3752,6 +3752,9 @@ static const struct pci_device_id fixed_dma_alias_tbl[] = {
{ PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x0285,
PCI_VENDOR_ID_ADAPTEC2, 0x02bb), /* Adaptec 3405 */
.driver_data = PCI_DEVFN(1, 0) },
+ { PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x0285,
+ PCI_VENDOR_ID_ADAPTEC2, 0x02bc), /* Adaptec 3805 */
+ .driver_data = PCI_DEVFN(1, 0) },
{ 0 }
};
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] pci: Add DMA alias quirk for Adaptec 3805 Alex Williamson <alex.williamson@redhat.com> - 2016-07-18 16:40 +0200 Re: [PATCH] pci: Add DMA alias quirk for Adaptec 3805 Bjorn Helgaas <helgaas@kernel.org> - 2016-07-20 00:20 +0200
csiph-web