x86: Fix up PIRQ routing table checksum earlier
[oweals/u-boot.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,pch7" },
18         { .compatible = "intel,pch9" },
19         { }
20 };
21
22 U_BOOT_DRIVER(generic_pch_drv) = {
23         .name           = "pch",
24         .id             = UCLASS_PCH,
25         .of_match       = generic_pch_ids,
26 };