On 06/01/2023 13:14, Oleksii Kurochko wrote:
<asm/types.h> should be included because second argument of
early_puts has type 'size_t' which is defined in <asm/types.h>
Signed-off-by: Oleksii Kurochko <[email protected]>
Acked-by: Julien Grall <[email protected]>
Cheers,
---
xen/include/xen/early_printk.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/xen/include/xen/early_printk.h b/xen/include/xen/early_printk.h
index 0f76c3a74f..abb34687da 100644
--- a/xen/include/xen/early_printk.h
+++ b/xen/include/xen/early_printk.h
@@ -4,6 +4,8 @@
#ifndef __XEN_EARLY_PRINTK_H__
#define __XEN_EARLY_PRINTK_H__
+#include <asm/types.h>
+
#ifdef CONFIG_EARLY_PRINTK
void early_puts(const char *s, size_t nr);
#else
--
Julien Grall