[PATCH 31/32] command: Include a required header in command.h
Simon Glass
sjg at chromium.org
Wed Aug 30 20:05:02 CEST 2023
This uses ARRAY_SIZE() but does not include the header file which declares
it. Fix this, so that command.h can be included without common.h
Signed-off-by: Simon Glass <sjg at chromium.org>
---
include/command.h | 3 +++
1 file changed, 3 insertions(+)
diff --git a/include/command.h b/include/command.h
index c4e3170967d..7a0ab8c90b1 100644
--- a/include/command.h
+++ b/include/command.h
@@ -15,6 +15,9 @@
#include <linux/compiler_attributes.h>
+/* For ARRAY_SIZE() */
+#include <linux/kernel.h>
+
#ifndef NULL
#define NULL 0
#endif
--
2.42.0.rc2.253.gd59a3bf2b4-goog
More information about the U-Boot
mailing list