intel/block/cse: Add Cannon Lake SoC PCI device ID

Change-Id: Ida822d704b04cc4d1dfffb58003fc308bcb502d0
Signed-off-by: Andrey Petrov <andrey.petrov@intel.com>
Reviewed-on: https://review.coreboot.org/20064
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
diff --git a/src/soc/intel/common/block/cse/cse.c b/src/soc/intel/common/block/cse/cse.c
index 1346af4..617684c 100644
--- a/src/soc/intel/common/block/cse/cse.c
+++ b/src/soc/intel/common/block/cse/cse.c
@@ -468,6 +468,7 @@
 static const unsigned short pci_device_ids[] = {
 	PCI_DEVICE_ID_INTEL_APL_CSE0,
 	PCI_DEVICE_ID_INTEL_GLK_CSE0,
+	PCI_DEVICE_ID_INTEL_CNL_CSE0,
 	0,
 };
 
@@ -475,7 +476,7 @@
 	.ops			= &cse_ops,
 	.vendor			= PCI_VENDOR_ID_INTEL,
 	/* SoC/chipset needs to provide PCI device ID */
-	.devices		= pci_device_ids,
+	.devices		= pci_device_ids
 };
 
 #endif