diff options
| author | Tom Rini <[email protected]> | 2024-04-30 20:40:52 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-05-06 15:07:48 -0600 |
| commit | 62cdc75fbae0f3b5595c06cc692e9406be9c6354 (patch) | |
| tree | 4471bb845e83d5b871d7715ff630a09a6bc0f5ec /include | |
| parent | ea1a07f588372d1a266890843288d3e77c1fd1d5 (diff) | |
extension_board.h: Add missing <linux/list.h>
This file has "struct list" in one of the structures, so add
<linux/list.h>.
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/extension_board.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/extension_board.h b/include/extension_board.h index 3b75b5ba9f7..87d404c0074 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]; |
