summaryrefslogtreecommitdiff
path: root/src/soc/intel/skylake/systemagent.c
diff options
context:
space:
mode:
authorSubrata Banik <subrata.banik@intel.com>2017-06-02 17:52:44 +0530
committerMartin Roth <martinroth@google.com>2017-06-06 19:42:17 +0200
commitc2165671b0ad0715a7cd1183390ca1b2c301d336 (patch)
treeff5c4512ff78a874acc65b03a450ab76ae8e2c70 /src/soc/intel/skylake/systemagent.c
parent54fd92bc343da755b53bc290573ca59e63890d07 (diff)
downloadcoreboot-c2165671b0ad0715a7cd1183390ca1b2c301d336.tar.xz
soc/intel/skylake: Use PCI IDs from device/pci_ids.h
Remove PCI IDs inclusion from soc header rather referring those from device/pci_ids.h. Change-Id: I490da3e336fb6f8194d5fba800132f550ed5ab37 Signed-off-by: Subrata Banik <subrata.banik@intel.com> Reviewed-on: https://review.coreboot.org/20015 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/soc/intel/skylake/systemagent.c')
-rw-r--r--src/soc/intel/skylake/systemagent.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/soc/intel/skylake/systemagent.c b/src/soc/intel/skylake/systemagent.c
index f15d26e25b..05603d160c 100644
--- a/src/soc/intel/skylake/systemagent.c
+++ b/src/soc/intel/skylake/systemagent.c
@@ -411,15 +411,15 @@ static struct device_operations systemagent_ops = {
};
static const unsigned short systemagent_ids[] = {
- MCH_SKYLAKE_ID_U,
- MCH_SKYLAKE_ID_Y,
- MCH_SKYLAKE_ID_ULX,
- MCH_SKYLAKE_ID_H,
- MCH_SKYLAKE_ID_H_EM,
- MCH_KABYLAKE_ID_U,
- MCH_KABYLAKE_ID_U_R,
- MCH_KABYLAKE_ID_Y,
- MCH_KABYLAKE_ID_H,
+ PCI_DEVICE_ID_INTEL_SKL_ID_U,
+ PCI_DEVICE_ID_INTEL_SKL_ID_Y,
+ PCI_DEVICE_ID_INTEL_SKL_ID_ULX,
+ PCI_DEVICE_ID_INTEL_SKL_ID_H,
+ PCI_DEVICE_ID_INTEL_SKL_ID_H_EM,
+ PCI_DEVICE_ID_INTEL_KBL_ID_U,
+ PCI_DEVICE_ID_INTEL_KBL_ID_Y,
+ PCI_DEVICE_ID_INTEL_KBL_ID_H,
+ PCI_DEVICE_ID_INTEL_KBL_U_R,
0
};