Skip to content
Snippets Groups Projects
Commit 43d3de54 authored by Tom Rini's avatar Tom Rini
Browse files
Pull request for efi-2021-04-rc6

Bug fix:
    Fix ConvertDeviceNodeToText() for Uart()
parents 1ba21bb0 d084f202
No related branches found
Tags mmc-2022-2-9
No related merge requests found
......@@ -126,8 +126,10 @@ static char *dp_msging(char *s, struct efi_device_path *dp)
switch (uart->stop_bits) {
case 2:
s += sprintf(s, "1.5)");
break;
default:
s += sprintf(s, "%d)", uart->stop_bits);
break;
}
break;
}
......
......@@ -181,7 +181,7 @@ efi_status_t EFIAPI efi_main(efi_handle_t handle,
(void **)&device_path);
if (ret != EFI_SUCCESS) {
con_out->output_string
(con_out, L"Missing devide path for device handle\r\n");
(con_out, L"Missing device path for device handle\r\n");
goto out;
}
con_out->output_string(con_out, L"Boot device: ");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment