diff options
author | Sol Boucher <solb@chromium.org> | 2015-05-07 16:41:46 -0700 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-05-08 19:45:55 +0200 |
commit | fa7a45524f7504646557902bff2c431bc26119ab (patch) | |
tree | 3a1e545dec692dd01bfb699af9593ea2aab9f16c /util/cbfstool/flashmap/valstr.h | |
parent | 65d9520e15d6ade6b80778536937af5cdb8dfb6d (diff) |
cbfstool: Fix strange flashmap whitespace
This is being fixed in a separate commit so we can diff against the
library as it existed in its own repo.
Change-Id: Id87cd8f4e015a5ed7dd8a19302cc22ab744fefe8
Signed-off-by: Sol Boucher <solb@chromium.org>
Reviewed-on: http://review.coreboot.org/10141
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'util/cbfstool/flashmap/valstr.h')
-rw-r--r-- | util/cbfstool/flashmap/valstr.h | 16 |
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 |