]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
extension_board.h: Add missing <linux/list.h>
authorTom Rini <trini@konsulko.com>
Wed, 1 May 2024 02:40:52 +0000 (20:40 -0600)
committerTom Rini <trini@konsulko.com>
Mon, 6 May 2024 21:07:48 +0000 (15:07 -0600)
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

index 3b75b5ba9f7ca27cf2755e64aa42d78ee8277e9c..87d404c007461f66dcd2a7d23dea044961fbf0d1 100644 (file)
@@ -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];