diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2022-10-02 13:13:17 +0200 |
---|---|---|
committer | Martin Roth <martin.roth@amd.corp-partner.google.com> | 2022-10-06 17:01:06 +0000 |
commit | ecb5e2db5259c51af22cff4c62b2e603a9264510 (patch) | |
tree | 88e715b5bce0a1dbe8f5e6c456693c4ef8e9e905 /src/device/device_const.c | |
parent | 9fd53fdb042bb63b0b7c2a50a9fe79b2c81b4eac (diff) |
device/device_const.c: Clean up includes and add <types.h>
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Change-Id: I7e84760566db5da7ff88dcbe9fb028ebcb390bdc
Reviewed-on: https://review.coreboot.org/c/coreboot/+/68043
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin L Roth <gaumless@gmail.com>
Diffstat (limited to 'src/device/device_const.c')
-rw-r--r-- | src/device/device_const.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/device/device_const.c b/src/device/device_const.c index c629f0524e..a40d0b05b9 100644 --- a/src/device/device_const.c +++ b/src/device/device_const.c @@ -4,10 +4,10 @@ #include <console/console.h> #include <device/device.h> #include <device/path.h> -#include <device/pci.h> #include <device/pci_def.h> -#include <device/resource.h> +#include <device/pci_type.h> #include <fw_config.h> +#include <types.h> /** Linked list of ALL devices */ DEVTREE_CONST struct device *DEVTREE_CONST all_devices = &dev_root; |