summaryrefslogtreecommitdiffstats
path: root/util/bucts
diff options
context:
space:
mode:
authorMartin Roth <martin@coreboot.org>2021-02-14 14:30:24 -0700
committerPatrick Georgi <pgeorgi@google.com>2021-02-25 10:02:53 +0000
commit90a43067dda7a0c330b8a29a08ab3de6d1eae695 (patch)
tree37f34b58d70e43609ba38d4623ab877f5d1caa9d /util/bucts
parenta84414a0fe782c9ace668ae5ef25cfcb6f3340aa (diff)
downloadcoreboot-90a43067dda7a0c330b8a29a08ab3de6d1eae695.tar.gz
coreboot-90a43067dda7a0c330b8a29a08ab3de6d1eae695.tar.bz2
coreboot-90a43067dda7a0c330b8a29a08ab3de6d1eae695.zip
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>
Diffstat (limited to 'util/bucts')
-rw-r--r--util/bucts/bucts.c16
1 files changed, 7 insertions, 9 deletions
diff --git a/util/bucts/bucts.c b/util/bucts/bucts.c
index a89456c3e603..2bd1c5dbf9b7 100644
--- a/util/bucts/bucts.c
+++ b/util/bucts/bucts.c
@@ -38,6 +38,7 @@ enum {
};
enum {
+ BUCTS_UNINITIALIZED = -1,
BUCTS_UNSET = 0,
BUCTS_SET
};
@@ -297,7 +298,7 @@ out:
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 @@ int main(int argc, char *argv[], const char *envp[])
#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 @@ int main(int argc, char *argv[], const char *envp[])
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 @@ int main(int argc, char *argv[], const char *envp[])
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 @@ int main(int argc, char *argv[], const char *envp[])
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 @@ int main(int argc, char *argv[], const char *envp[])
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);
}