pci.c 498 B

12345678910111213141516171819202122232425
  1. /*
  2. * Copyright (c) 2011 The Chromium OS Authors.
  3. * (C) Copyright 2008,2009
  4. * Graeme Russ, <graeme.russ@gmail.com>
  5. *
  6. * (C) Copyright 2002
  7. * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
  8. *
  9. * SPDX-License-Identifier: GPL-2.0+
  10. */
  11. #include <common.h>
  12. #include <dm.h>
  13. #include <pci.h>
  14. static const struct udevice_id generic_pch_ids[] = {
  15. { .compatible = "intel,pch" },
  16. { }
  17. };
  18. U_BOOT_DRIVER(generic_pch_drv) = {
  19. .name = "pch",
  20. .id = UCLASS_PCH,
  21. .of_match = generic_pch_ids,
  22. };