summaryrefslogtreecommitdiff
path: root/util/cbfstool/flashmap/valstr.h
diff options
context:
space:
mode:
Diffstat (limited to 'util/cbfstool/flashmap/valstr.h')
-rw-r--r--util/cbfstool/flashmap/valstr.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/util/cbfstool/flashmap/valstr.h b/util/cbfstool/flashmap/valstr.h
index 3885ef75f1..9b57d58cfd 100644
--- a/util/cbfstool/flashmap/valstr.h
+++ b/util/cbfstool/flashmap/valstr.h
@@ -43,21 +43,21 @@ struct valstr {
/*
* val2str_default - convert value to string
*
- * @val: value to convert
- * @vs: value-string data
- * @def_str: default string to return if no matching value found
+ * @val: value to convert
+ * @vs: value-string data
+ * @def_str: default string to return if no matching value found
*
* returns pointer to string
* returns def_str if no matching value found
*/
const char *val2str_default(uint32_t val, const struct valstr *vs,
- const char *def_str);
+ const char *def_str);
/*
* val2str - convert value to string
*
- * @val: value to convert
- * @vs: value-string data
+ * @val: value to convert
+ * @vs: value-string data
*
* returns pointer to string
* returns pointer to "unknown" static string if not found
@@ -67,8 +67,8 @@ const char *val2str(uint32_t val, const struct valstr *vs);
/*
* str2val - convert string to value
*
- * @str: string to convert
- * @vs: value-string data
+ * @str: string to convert
+ * @vs: value-string data
*
* returns value for string
* returns value for last entry in value-string data if not found