aboutsummaryrefslogblamecommitdiff
path: root/sysutils/u-boot-rpi3/files/patch-lib_efi__loader_efi__console.c
blob: 4065ae9ccb48e33de3a6ef4c2cb7dcc278e38ab8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                                                
--- lib/efi_loader/efi_console.c.orig	2018-03-13 12:02:19 UTC
+++ lib/efi_loader/efi_console.c
@@ -547,8 +547,8 @@ int efi_console_register(void)
 		printf("ERROR: Failed to register console event\n");
 		return r;
 	}
-	/* 5000 ns cycle is sufficient for 2 MBaud */
-	r = efi_set_timer(console_timer_event, EFI_TIMER_PERIODIC, 50);
+	/* 100 ms */
+	r = efi_set_timer(console_timer_event, EFI_TIMER_PERIODIC, 100*1000*10);
 	if (r != EFI_SUCCESS)
 		printf("ERROR: Failed to set console timer\n");
 	return r;