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>
diff --git a/util/cbfstool/flashmap/valstr.h b/util/cbfstool/flashmap/valstr.h
index 3885ef7..9b57d58 100644
--- a/util/cbfstool/flashmap/valstr.h
+++ b/util/cbfstool/flashmap/valstr.h
@@ -43,21 +43,21 @@
 /*
  * 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 @@
 /*
  * 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