]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
include: extension_board: Document the extension structure
authorKory Maincent (TI.com) <kory.maincent@bootlin.com>
Thu, 30 Oct 2025 16:44:59 +0000 (17:44 +0100)
committerTom Rini <trini@konsulko.com>
Mon, 3 Nov 2025 16:02:39 +0000 (10:02 -0600)
Add documentation to describe the extension structure.

Signed-off-by: Kory Maincent (TI.com) <kory.maincent@bootlin.com>
include/extension_board.h

index 22e4104bc54d1c0305c2332b080573a32b452987..23e36d3c0bf0e3e488d59f4c3dd41861082bf519 100644 (file)
@@ -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];