Patrick Georgi has submitted this change. ( https://review.coreboot.org/c/coreboot/+/50846 )
Change subject: util/bucts: Fix compiler complaints shown with -Wextra ......................................................................
util/bucts: Fix compiler complaints shown with -Wextra
This fixes the following 2 complaints:
bucts.c: In function ‘main’: error: unused parameter ‘envp’ error: ‘bucts_state’ may be used uninitialized in this function.
The bucts_state wasn't real, but the compiler couldn't tell, so use one variable to check for modifications instead of two.
Signed-off-by: Martin Roth martin@coreboot.org Change-Id: Iff1aae3441ec366d272e88b6b6634980d61cb8ea Reviewed-on: https://review.coreboot.org/c/coreboot/+/50846 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Patrick Georgi pgeorgi@google.com Reviewed-by: Angel Pons th3fanbus@gmail.com --- M util/bucts/bucts.c 1 file changed, 7 insertions(+), 9 deletions(-)
Approvals: build bot (Jenkins): Verified Patrick Georgi: Looks good to me, approved Angel Pons: Looks good to me, approved
diff --git a/util/bucts/bucts.c b/util/bucts/bucts.c index a89456c..2bd1c5d 100644 --- a/util/bucts/bucts.c +++ b/util/bucts/bucts.c @@ -38,6 +38,7 @@ };
enum { + BUCTS_UNINITIALIZED = -1, BUCTS_UNSET = 0, BUCTS_SET }; @@ -297,7 +298,7 @@ return ret; }
-int main(int argc, char *argv[], const char *envp[]) +int main(int argc, char *argv[]) { struct pci_access *pacc; struct pci_dev *dev, *sb = NULL; @@ -306,8 +307,7 @@ #endif int opt, option_index = 0; int print_state = 0; - int change_state = 0; - int bucts_state; + int bucts_state = BUCTS_UNINITIALIZED;
static struct option long_options[] = { {"unset", 0, 0, 'u'}, @@ -329,7 +329,7 @@ long_options, &option_index)) != EOF) { switch (opt) { case 'u': - if (change_state) { + if (bucts_state != BUCTS_UNINITIALIZED) { printf("Invalid setting: multiple set/unset arguments\n"); exit(1); } @@ -338,10 +338,9 @@ exit(1); } bucts_state = BUCTS_UNSET; - change_state = 1; break; case 's': - if (change_state) { + if (bucts_state != BUCTS_UNINITIALIZED) { printf("Invalid setting: multiple set/unset arguments\n"); exit(1); } @@ -350,10 +349,9 @@ exit(1); } bucts_state = BUCTS_SET; - change_state = 1; break; case 'p': - if (change_state) { + if (bucts_state != BUCTS_UNINITIALIZED) { printf("Print and Set are mutually exclusive!\n"); exit(1); } @@ -418,7 +416,7 @@
if (print_state) print_status(rcba_addr, has_var_bb); - if (change_state) { + if (bucts_state != BUCTS_UNINITIALIZED) { set_bucts(rcba_addr, bucts_state); print_status(rcba_addr, has_var_bb); }