diff options
| author | Kory Maincent (TI.com) <[email protected]> | 2025-10-30 17:44:59 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-11-03 10:02:39 -0600 |
| commit | 79cd6e78ff6387685e0ccb5f7382d808478155dc (patch) | |
| tree | 64b04dcdb0cae70ddbc86c1924715c9aa3bdc4fa /include | |
| parent | 06199ca751199bc432f33f10a3992df27a3bdac7 (diff) | |
include: extension_board: Document the extension structure
Add documentation to describe the extension structure.
Signed-off-by: Kory Maincent (TI.com) <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/extension_board.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/extension_board.h b/include/extension_board.h index 22e4104bc54..23e36d3c0bf 100644 --- a/include/extension_board.h +++ b/include/extension_board.h @@ -9,6 +9,15 @@ #include <linux/list.h> +/** + * extension - Description fields of an extension board + * @list: List head + * @name: Name of the extension + * @owner: Owner of the extension + * @version: Version of the extension + * @overlay: Devicetree overlay name to be loaded for this extension + * @other: Other information of this extension + */ struct extension { struct list_head list; char name[32]; |
