Skip to content

Commit

Permalink
x86: Correct regwidth prompt in cbsysinfo
Browse files Browse the repository at this point in the history
This should be 'regwidth', not 'baud'. Fix it.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
  • Loading branch information
sjg20 authored and lbmeng committed May 10, 2021
1 parent 07b5310 commit b8db1c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/x86/cbsysinfo.c
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ static void show_table(struct sysinfo_t *info, bool verbose)
print_hex(">type", ser->type);
print_addr(">base", ser->baseaddr);
print_dec(">baud", ser->baud);
print_hex(">baud", ser->regwidth);
print_hex(">regwidth", ser->regwidth);
print_dec(">input_hz", ser->input_hertz);
print_addr(">PCI addr", ser->uart_pci_addr);
}
Expand Down

0 comments on commit b8db1c1

Please sign in to comment.