HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/43948 )
Change subject: src/device: Add missing <{stddef,stdint}.h> ......................................................................
src/device: Add missing <{stddef,stdint}.h>
Change-Id: I8e36640522490de47f347e7ff9f8736f681ab048 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/device/i2c_bus.c M src/device/mmio.c M src/device/oprom/x86emu/sys.c M src/device/pci_rom.c 4 files changed, 8 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/48/43948/1
diff --git a/src/device/i2c_bus.c b/src/device/i2c_bus.c index a65cdad..155107b 100644 --- a/src/device/i2c_bus.c +++ b/src/device/i2c_bus.c @@ -5,6 +5,7 @@ #include <device/smbus.h> #include <device/i2c_bus.h> #include <commonlib/endian.h> +#include <stddef.h>
struct bus *i2c_link(struct device *const dev) { diff --git a/src/device/mmio.c b/src/device/mmio.c index 8b08b9b..71da959 100644 --- a/src/device/mmio.c +++ b/src/device/mmio.c @@ -2,6 +2,8 @@
#include <assert.h> #include <device/mmio.h> +#include <stddef.h> +#include <stdint.h>
/* Helper functions for various MMIO access patterns. */
diff --git a/src/device/oprom/x86emu/sys.c b/src/device/oprom/x86emu/sys.c index 06f240c..2fb426f 100644 --- a/src/device/oprom/x86emu/sys.c +++ b/src/device/oprom/x86emu/sys.c @@ -44,6 +44,9 @@ #include <x86emu/x86emu.h> #include <x86emu/regs.h> #include <device/oprom/include/io.h> +#include <stddef.h> +#include <stdint.h> + #include "debug.h" #include "prim_ops.h"
diff --git a/src/device/pci_rom.c b/src/device/pci_rom.c index bb616d9..5758590 100644 --- a/src/device/pci_rom.c +++ b/src/device/pci_rom.c @@ -10,6 +10,8 @@ #include <cbfs.h> #include <cbmem.h> #include <acpi/acpigen.h> +#include <stddef.h> +#include <stdint.h>
/* Rmodules don't like weak symbols. */ void __weak map_oprom_vendev_rev(u32 *vendev, u8 *rev) { return; }
Hello build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/43948
to look at the new patch set (#2).
Change subject: src/device: Add missing '<{stddef,stdint}.h>' covered by '<types.h>' ......................................................................
src/device: Add missing '<{stddef,stdint}.h>' covered by '<types.h>'
Change-Id: I8e36640522490de47f347e7ff9f8736f681ab048 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/device/i2c_bus.c M src/device/mmio.c M src/device/oprom/x86emu/sys.c M src/device/pci_rom.c 4 files changed, 5 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/48/43948/2
HAOUAS Elyes has abandoned this change. ( https://review.coreboot.org/c/coreboot/+/43948 )
Change subject: src/device: Add missing '<{stddef,stdint}.h>' covered by '<types.h>' ......................................................................
Abandoned