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: 93e9af685f ("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>
This commit is contained in:
Heinrich Schuchardt
2026-07-27 20:24:38 +02:00
parent 3d47f55832
commit a2fda5145f
+4 -2
View 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),
};
/**