Elyes Haouas has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/68207 )
Change subject: src/include/{post.h,console/cbmem_console.h}: Sorte includes ......................................................................
src/include/{post.h,console/cbmem_console.h}: Sorte includes
Signed-off-by: Elyes Haouas ehaouas@noos.fr Change-Id: Ic467e6c5795f94d052b70117c63e7b57a3435d5c --- M src/include/console/cbmem_console.h M src/include/post.h 2 files changed, 12 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/07/68207/1
diff --git a/src/include/console/cbmem_console.h b/src/include/console/cbmem_console.h index 9a814b9..5224c4e 100644 --- a/src/include/console/cbmem_console.h +++ b/src/include/console/cbmem_console.h @@ -2,8 +2,8 @@ #ifndef _CONSOLE_CBMEM_CONSOLE_H_ #define _CONSOLE_CBMEM_CONSOLE_H_
-#include <stdint.h> #include <stddef.h> +#include <stdint.h>
void cbmemc_init(void); void cbmemc_tx_byte(unsigned char data); diff --git a/src/include/post.h b/src/include/post.h index 0eb2c3a..fce5dea 100644 --- a/src/include/post.h +++ b/src/include/post.h @@ -3,8 +3,8 @@ #ifndef __POST_H__ #define __POST_H__
-#include <stdint.h> #include <device/device.h> +#include <stdint.h>
void cmos_post_init(void); void cmos_post_code(u8 value);