UPSTREAM: nvramcui: remove undeclared variable
Remove an undeclared variable that was accidentally left over,
nvramcui is currently unable to compile and operate because of this.
Regression introduced in: 904dd303cb
(nvramcui: refactor code)
Fixes: https://ticket.coreboot.org/issues/70
BUG=None
BRANCH=None
TEST=None
Signed-off-by: Antonello Dettori <dev@dettori.io>
Reviewed-on: https://review.coreboot.org/16333
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Martin Roth <martinroth@google.com>
Change-Id: Ieaba615838d7593546ab5696baf1b8f9828da345
Reviewed-on: https://chromium-review.googlesource.com/380998
Commit-Ready: Furquan Shaikh <furquan@chromium.org>
Tested-by: Furquan Shaikh <furquan@chromium.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
2381e02efa
commit
33c6d37627
1 changed files with 2 additions and 2 deletions
|
|
@ -179,8 +179,8 @@ int main(void)
|
|||
|
||||
struct cb_cmos_option_table *opttbl = get_system_option_table();
|
||||
|
||||
if (opttbl == NULL && cmos_default == NULL) {
|
||||
printf("Could not find coreboot option table/cmos.default.\n");
|
||||
if (opttbl == NULL) {
|
||||
printf("Could not find coreboot option table.\n");
|
||||
halt();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue