aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2024-01-16 15:00:20 +0100
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2024-01-21 11:24:24 +0100
commite75e4cf5d91012fa8af327177a7927daabfcf931 (patch)
tree6958c22568c045b910ec57b2baa0aa9e2fcdc74e /include
parent0d7634ebc13ee176f9252864c8d3408dfb07bbdd (diff)
downloadu-boot-e75e4cf5d91012fa8af327177a7927daabfcf931.zip
u-boot-e75e4cf5d91012fa8af327177a7927daabfcf931.tar.gz
u-boot-e75e4cf5d91012fa8af327177a7927daabfcf931.tar.bz2
part: correct documentation of part_get_bootable()
We have to use 'Return:' to render the description of the return value in the HTML documentation. Fixes: f55aa4454ac3 ("part: Add a fallback for part_get_bootable()") Fixes: dcffa4428d03 ("part: Add a function to find the first bootable partition") Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Diffstat (limited to 'include')
-rw-r--r--include/part.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/part.h b/include/part.h
index db34bc6..32ee404 100644
--- a/include/part.h
+++ b/include/part.h
@@ -685,8 +685,8 @@ int part_get_type_by_name(const char *name);
/**
* part_get_bootable() - Find the first bootable partition
*
- * @desc: Block-device descriptor
- * @return first bootable partition, or 0 if there is none
+ * @desc: Block-device descriptor
+ * Return: first bootable partition, or 0 if there is none
*/
int part_get_bootable(struct blk_desc *desc);