diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2019-06-16 11:08:25 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2019-07-12 17:10:56 +0000 |
commit | 276d46ac05b59c1c4536cbce20808d0a96f7fea5 (patch) | |
tree | 28efb9efa2f16545634bc3e8a8c6926c9eec7f65 /src/northbridge | |
parent | 56352e1f8055c3495c71e1856f0d26923be44ed0 (diff) |
src: Add missing include <device/pci_ops.h>
Change-Id: Iae73fc1557fb310dacbbf8bc486dc3cc5249d9e7
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/33526
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/northbridge')
-rw-r--r-- | src/northbridge/via/vx900/early_host_bus_ctl.c | 2 | ||||
-rw-r--r-- | src/northbridge/via/vx900/pci_util.c | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/northbridge/via/vx900/early_host_bus_ctl.c b/src/northbridge/via/vx900/early_host_bus_ctl.c index 92bb44dda0..1ef29449fd 100644 --- a/src/northbridge/via/vx900/early_host_bus_ctl.c +++ b/src/northbridge/via/vx900/early_host_bus_ctl.c @@ -14,6 +14,8 @@ * GNU General Public License for more details. */ +#include <device/pci_ops.h> + #include "early_vx900.h" static void vx900_cpu_bus_preram_setup(void) diff --git a/src/northbridge/via/vx900/pci_util.c b/src/northbridge/via/vx900/pci_util.c index 07a9a71f73..e6eb91ac95 100644 --- a/src/northbridge/via/vx900/pci_util.c +++ b/src/northbridge/via/vx900/pci_util.c @@ -15,6 +15,7 @@ */ #include <console/console.h> +#include <device/pci_ops.h> #include "vx900.h" |