HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/43942 )
Change subject: src/superio: Add missing '#include <stddef.h>' ......................................................................
src/superio: Add missing '#include <stddef.h>'
size_t needs <stddef.h>.
Change-Id: Ic6ffeb3881ee581c5e5b5d614dfd6efda2e5b2c2 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/superio/aspeed/ast2400/superio.c M src/superio/smsc/sch5545/sch5545_emi.c M src/superio/smsc/sch5545/sch5545_emi.h 3 files changed, 4 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/42/43942/1
diff --git a/src/superio/aspeed/ast2400/superio.c b/src/superio/aspeed/ast2400/superio.c index 4510c21..1c6e436 100644 --- a/src/superio/aspeed/ast2400/superio.c +++ b/src/superio/aspeed/ast2400/superio.c @@ -6,6 +6,8 @@ #include <pc80/keyboard.h> #include <superio/common/ssdt.h> #include <acpi/acpi.h> +#include <stddef.h> + #include "ast2400.h" #include "chip.h"
diff --git a/src/superio/smsc/sch5545/sch5545_emi.c b/src/superio/smsc/sch5545/sch5545_emi.c index 2bb150c..8031129 100644 --- a/src/superio/smsc/sch5545/sch5545_emi.c +++ b/src/superio/smsc/sch5545/sch5545_emi.c @@ -5,6 +5,7 @@ #include <device/pnp.h> #include <device/pnp_def.h> #include <device/pnp_ops.h> +#include <stddef.h> #include <superio/conf_mode.h>
#include "sch5545.h" diff --git a/src/superio/smsc/sch5545/sch5545_emi.h b/src/superio/smsc/sch5545/sch5545_emi.h index 2bf3a76..5b622de 100644 --- a/src/superio/smsc/sch5545/sch5545_emi.h +++ b/src/superio/smsc/sch5545/sch5545_emi.h @@ -3,6 +3,7 @@ #ifndef SUPERIO_SCH_5545_EMI_H #define SUPERIO_SCH_5545_EMI_H
+#include <stddef.h> #include <stdlib.h> #include <stdint.h>