pci_x86.c 392 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (c) 2015 Google, Inc
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #include <common.h>
  7. #include <dm.h>
  8. #include <pci.h>
  9. static const struct dm_pci_ops x86_pci_ops = {
  10. };
  11. static const struct udevice_id x86_pci_ids[] = {
  12. { .compatible = "x86,pci" },
  13. { }
  14. };
  15. U_BOOT_DRIVER(pci_x86) = {
  16. .name = "pci_x86",
  17. .id = UCLASS_PCI,
  18. .of_match = x86_pci_ids,
  19. .ops = &x86_pci_ops,
  20. };