summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorHeinrich Schuchardt <[email protected]>2026-07-27 19:00:22 +0200
committerHeinrich Schuchardt <[email protected]>2026-07-27 20:24:38 +0200
commita2fda5145fdf771625b58723ebfb8f1f98f428a1 (patch)
tree4f41be8ac57484e8cac541b0fbb5769f321219b4 /include
parent3d47f55832833744b870dc8b9c7564ceed48d2bd (diff)
sandbox: fix enum host_platform_flags description
`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 <[email protected]> Reviewed-by: Denis Mukhin <[email protected]>
Diffstat (limited to 'include')
-rw-r--r--include/sandbox_host.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/sandbox_host.h b/include/sandbox_host.h
index 1330358ef7a..815b32487e7 100644
--- a/include/sandbox_host.h
+++ b/include/sandbox_host.h
@@ -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),
};
/**