]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
sandbox: fix enum host_platform_flags description
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Mon, 27 Jul 2026 17:00:22 +0000 (19:00 +0200)
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Mon, 27 Jul 2026 18:24:38 +0000 (20:24 +0200)
`make htmldocs` reports

    ./include/sandbox_host.h:14: warning:
    cannot understand function prototype: 'enum host_platform_flags '

Align the description with Sphinx style.

Fixes: 93e9af685fef ("test: bootdev: scan with a broken high-priority device")
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Denis Mukhin <dmukhin@ford.com>
include/sandbox_host.h

index 1330358ef7abef2b3e82adbefc3c4216df137a3c..815b32487e7406fa227b673e4f89fad2260298a2 100644 (file)
@@ -9,10 +9,12 @@
 #define __SANDBOX_HOST__
 
 /**
- * Device flags.
+ * enum host_platform_flags - device flags
+ *
  */
 enum host_platform_flags {
-       HOST_FLAG_BROKEN                = BIT(0), /** Simulate broken device */
+       /** @HOST_FLAG_BROKEN:  simulate broken device */
+       HOST_FLAG_BROKEN                = BIT(0),
 };
 
 /**