Skip to content

Commit be3e3ab

Browse files
Siddharth-Vadapalli-at-TIgregkh
authored andcommitted
misc: pci_endpoint_test: Add deviceID for J721S2 PCIe EP device support
commit 8293703 upstream. Add DEVICE_ID for J721S2 and enable support for endpoints configured with this DEVICE_ID in the pci_endpoint_test driver. Signed-off-by: Siddharth Vadapalli <[email protected]> Cc: stable <[email protected]> Reviewed-by: Manivannan Sadhasivam <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent f50fcc0 commit be3e3ab

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

drivers/misc/pci_endpoint_test.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@
7171
#define PCI_DEVICE_ID_TI_AM654 0xb00c
7272
#define PCI_DEVICE_ID_TI_J7200 0xb00f
7373
#define PCI_DEVICE_ID_TI_AM64 0xb010
74+
#define PCI_DEVICE_ID_TI_J721S2 0xb013
7475
#define PCI_DEVICE_ID_LS1088A 0x80c0
7576
#define PCI_DEVICE_ID_IMX8 0x0808
7677

@@ -999,6 +1000,9 @@ static const struct pci_device_id pci_endpoint_test_tbl[] = {
9991000
{ PCI_DEVICE(PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_AM64),
10001001
.driver_data = (kernel_ulong_t)&j721e_data,
10011002
},
1003+
{ PCI_DEVICE(PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_J721S2),
1004+
.driver_data = (kernel_ulong_t)&j721e_data,
1005+
},
10021006
{ }
10031007
};
10041008
MODULE_DEVICE_TABLE(pci, pci_endpoint_test_tbl);

0 commit comments

Comments
 (0)