Elyes Haouas has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/68043 )
Change subject: device/device_const.c: Clean up includes and add <types.h> ......................................................................
device/device_const.c: Clean up includes and add <types.h>
Signed-off-by: Elyes Haouas ehaouas@noos.fr Change-Id: I7e84760566db5da7ff88dcbe9fb028ebcb390bdc --- M src/device/device_const.c 1 file changed, 12 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/43/68043/1
diff --git a/src/device/device_const.c b/src/device/device_const.c index c629f05..a40d0b0 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;