]> git.sur5r.net Git - u-boot/blobdiff - arch/x86/cpu/coreboot/pci.c
Merge branch 'master' of git://git.denx.de/u-boot-sunxi
[u-boot] / arch / x86 / cpu / coreboot / pci.c
index fa415dd42be6814be9a851c9c950b8baacbde6f7..67eb14ce99406dd90c6bb819715a9d94f8f2d4c5 100644 (file)
@@ -34,3 +34,14 @@ U_BOOT_DRIVER(pci_x86_drv) = {
        .of_match       = pci_x86_ids,
        .ops            = &pci_x86_ops,
 };
+
+static const struct udevice_id generic_pch_ids[] = {
+       { .compatible = "intel,pch" },
+       { }
+};
+
+U_BOOT_DRIVER(generic_pch_drv) = {
+       .name           = "pch",
+       .id             = UCLASS_PCH,
+       .of_match       = generic_pch_ids,
+};