diff mbox series

[005/149] extension_board.h: Add missing <linux/list.h>

Message ID 20240501024316.1767971-5-trini@konsulko.com
State Accepted
Commit 62cdc75fbae0f3b5595c06cc692e9406be9c6354
Delegated to: Tom Rini
Headers show
Series [001/149] global: Make <asm/global_data.h> include <asm/u-boot.h> | expand

Commit Message

Tom Rini May 1, 2024, 2:40 a.m. UTC
This file has "struct list" in one of the structures, so add
<linux/list.h>.

Signed-off-by: Tom Rini <trini@konsulko.com>
---
 include/extension_board.h | 2 ++
 1 file changed, 2 insertions(+)
diff mbox series

Patch

diff --git a/include/extension_board.h b/include/extension_board.h
index 3b75b5ba9f7c..87d404c00746 100644
--- a/include/extension_board.h
+++ b/include/extension_board.h
@@ -7,6 +7,8 @@ 
 #ifndef __EXTENSION_SUPPORT_H
 #define __EXTENSION_SUPPORT_H
 
+#include <linux/list.h>
+
 struct extension {
 	struct list_head list;
 	char name[32];