diff options
author | Naoki Hayama <naoki.hayama@lineo.co.jp> | 2020-10-07 11:22:24 +0900 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-10-22 09:54:52 -0400 |
commit | 898a0849536381c6a1fb8d6d8ff7d46d9f6769eb (patch) | |
tree | 31791683cae1bd05489e873747fa9ea45a030982 /include | |
parent | ad5fb9f2e66e605941f78791f552c6bf6e522a9d (diff) | |
download | u-boot-898a0849536381c6a1fb8d6d8ff7d46d9f6769eb.zip u-boot-898a0849536381c6a1fb8d6d8ff7d46d9f6769eb.tar.gz u-boot-898a0849536381c6a1fb8d6d8ff7d46d9f6769eb.tar.bz2 |
cosmetic: image: Fix comments and the order of definitions
Fix some comments about functions.
Move genimg_get_comp_name() above genimg_get_short_name() because
genimg_get_comp_name() is related to get_table_entry_name().
Signed-off-by: Naoki Hayama <naoki.hayama@lineo.co.jp>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/image.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/image.h b/include/image.h index 00f774f..4094ee5 100644 --- a/include/image.h +++ b/include/image.h @@ -563,6 +563,7 @@ int genimg_get_cat_count(enum ih_category category); /** * genimg_get_cat_desc() - Get the description of a category * + * @category: Category to check * @return the description of a category, e.g. "architecture". This * effectively converts the enum to a string. */ |