]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/x86/cpu/coreboot/pci.c
x86: pci: Tidy up the generic x86 PCI driver
[karo-tx-uboot.git] / arch / x86 / cpu / coreboot / pci.c
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
12 #include <common.h>
13 #include <dm.h>
14 #include <pci.h>
15
16 static const struct udevice_id generic_pch_ids[] = {
17         { .compatible = "intel,pch" },
18         { }
19 };
20
21 U_BOOT_DRIVER(generic_pch_drv) = {
22         .name           = "pch",
23         .id             = UCLASS_PCH,
24         .of_match       = generic_pch_ids,
25 };