diff mbox series

[1/1] efi_loader: avoid EFI_CALL() when draining console

Message ID 20221015104339.13039-1-heinrich.schuchardt@canonical.com
State Accepted, archived
Delegated to: Heinrich Schuchardt
Headers show
Series [1/1] efi_loader: avoid EFI_CALL() when draining console | expand

Commit Message

Heinrich Schuchardt Oct. 15, 2022, 10:43 a.m. UTC
Use internal function.

Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
---
 lib/efi_loader/efi_console.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

Comments

Ilias Apalodimas Oct. 15, 2022, 7:31 p.m. UTC | #1
On Sat, Oct 15, 2022 at 12:43:39PM +0200, Heinrich Schuchardt wrote:
> Use internal function.
> 
> Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
> ---
>  lib/efi_loader/efi_console.c | 4 +---
>  1 file changed, 1 insertion(+), 3 deletions(-)
> 
> diff --git a/lib/efi_loader/efi_console.c b/lib/efi_loader/efi_console.c
> index 6d4784e140..ab83f8bf82 100644
> --- a/lib/efi_loader/efi_console.c
> +++ b/lib/efi_loader/efi_console.c
> @@ -1359,9 +1359,7 @@ efi_status_t efi_console_get_u16_string(struct efi_simple_text_input_protocol *c
>  	       ANSI_CLEAR_LINE_TO_END
>  	       ANSI_CURSOR_SHOW, row, col);
>  
> -	ret = EFI_CALL(cin->reset(cin, false));
> -	if (ret != EFI_SUCCESS)
> -		return ret;
> +	efi_cin_empty_buffer();
>  
>  	for (;;) {
>  		do {
> -- 
> 2.37.2
> 

Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
diff mbox series

Patch

diff --git a/lib/efi_loader/efi_console.c b/lib/efi_loader/efi_console.c
index 6d4784e140..ab83f8bf82 100644
--- a/lib/efi_loader/efi_console.c
+++ b/lib/efi_loader/efi_console.c
@@ -1359,9 +1359,7 @@  efi_status_t efi_console_get_u16_string(struct efi_simple_text_input_protocol *c
 	       ANSI_CLEAR_LINE_TO_END
 	       ANSI_CURSOR_SHOW, row, col);
 
-	ret = EFI_CALL(cin->reset(cin, false));
-	if (ret != EFI_SUCCESS)
-		return ret;
+	efi_cin_empty_buffer();
 
 	for (;;) {
 		do {