From dd6c3b4a61b3f93c391cc460c50dca37cb32f7f0 Mon Sep 17 00:00:00 2001 From: Sergii Dmytruk Date: Wed, 22 May 2024 20:31:46 +0300 Subject: util/smmstoretool: fix uint{16,32} not being listed by help These data types were added during review of CB:79080 but they weren't added to the help message. Change-Id: I6e79d65c80c292c3f5d2a2611e602db5cc6cf374 Signed-off-by: Sergii Dmytruk Reviewed-on: https://review.coreboot.org/c/coreboot/+/82610 Reviewed-by: Krystian Hebel Tested-by: build bot (Jenkins) Reviewed-by: Maciej Pijanowski --- util/smmstoretool/main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/util/smmstoretool/main.c b/util/smmstoretool/main.c index 4857b624ba..f5228d69e1 100644 --- a/util/smmstoretool/main.c +++ b/util/smmstoretool/main.c @@ -123,6 +123,8 @@ static void print_types(FILE *f) fprintf(f, "Types and their values:\n"); fprintf(f, " * bool (true, false)\n"); fprintf(f, " * uint8 (0-255)\n"); + fprintf(f, " * uint16 (0-65535)\n"); + fprintf(f, " * uint32 (0-4294967295)\n"); fprintf(f, " * ascii (NUL-terminated)\n"); fprintf(f, " * unicode (widened and NUL-terminated)\n"); fprintf(f, " * raw (output only; raw bytes on output)\n"); -- cgit v1.2.3