Martin Roth has submitted this change. ( 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 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 --- M src/device/device_const.c 1 file changed, 15 insertions(+), 2 deletions(-)
Approvals: build bot (Jenkins): Verified Martin L Roth: Looks good to me, approved
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;