Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

stmmac: intel: Add ADL-N PCI ID

Add PCI ID for Ethernet TSN Controller on ADL-N.

Signed-off-by: Michael Sit Wei Hong <michael.wei.hong.sit@intel.com>
Link: https://lore.kernel.org/r/20220309033415.3370250-1-michael.wei.hong.sit@intel.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Michael Sit Wei Hong and committed by
Jakub Kicinski
30c5601f d9f50991

+2
+2
drivers/net/ethernet/stmicro/stmmac/dwmac-intel.c
··· 1159 1159 #define PCI_DEVICE_ID_INTEL_TGL_SGMII1G 0xa0ac 1160 1160 #define PCI_DEVICE_ID_INTEL_ADLS_SGMII1G_0 0x7aac 1161 1161 #define PCI_DEVICE_ID_INTEL_ADLS_SGMII1G_1 0x7aad 1162 + #define PCI_DEVICE_ID_INTEL_ADLN_SGMII1G 0x54ac 1162 1163 1163 1164 static const struct pci_device_id intel_eth_pci_id_table[] = { 1164 1165 { PCI_DEVICE_DATA(INTEL, QUARK, &quark_info) }, ··· 1177 1176 { PCI_DEVICE_DATA(INTEL, TGLH_SGMII1G_1, &tgl_sgmii1g_phy1_info) }, 1178 1177 { PCI_DEVICE_DATA(INTEL, ADLS_SGMII1G_0, &adls_sgmii1g_phy0_info) }, 1179 1178 { PCI_DEVICE_DATA(INTEL, ADLS_SGMII1G_1, &adls_sgmii1g_phy1_info) }, 1179 + { PCI_DEVICE_DATA(INTEL, ADLN_SGMII1G, &tgl_sgmii1g_phy0_info) }, 1180 1180 {} 1181 1181 }; 1182 1182 MODULE_DEVICE_TABLE(pci, intel_eth_pci_id_table);