Skip to content

Commit d14a220

Browse files
deeppatkristopk
authored andcommitted
Added the following PCI Device ID's to the module device table: (#374)
0x1d0f, 0xf000 0x1d0f, 0xf001 0x1d0f, 0x1042 This will allow xdma to bind to 1042 on install. On loading another AFI.
1 parent 83c80ef commit d14a220

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

sdk/linux_kernel_drivers/xdma/xdma_mod.c

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,10 @@ static const struct pci_device_id pci_ids[] = {
106106

107107
{ PCI_DEVICE(0x10ee, 0x2808), },
108108

109-
#ifdef INTERNAL_TESTING
110-
{ PCI_DEVICE(0x1d0f, 0x1042), 0},
111-
#endif
109+
{ PCI_DEVICE(0x1d0f, 0xf000), },
110+
{ PCI_DEVICE(0x1d0f, 0xf001), },
111+
{ PCI_DEVICE(0x1d0f, 0x1042), },
112+
112113
{0,}
113114
};
114115
MODULE_DEVICE_TABLE(pci, pci_ids);

0 commit comments

Comments
 (0)