summaryrefslogtreecommitdiff
path: root/firmware/lib/vboot_ui_legacy.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/lib/vboot_ui_legacy.c')
-rw-r--r--firmware/lib/vboot_ui_legacy.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/lib/vboot_ui_legacy.c b/firmware/lib/vboot_ui_legacy.c
index f1288418..1b6a32e8 100644
--- a/firmware/lib/vboot_ui_legacy.c
+++ b/firmware/lib/vboot_ui_legacy.c
@@ -219,13 +219,13 @@ void vb2_error_beep(enum vb2_beep_type beep)
{
switch (beep) {
case VB_BEEP_FAILED:
- VbExBeep(250, 200);
+ vb2ex_beep(250, 200);
break;
default:
case VB_BEEP_NOT_ALLOWED:
- VbExBeep(120, 400);
- VbExSleepMs(120);
- VbExBeep(120, 400);
+ vb2ex_beep(120, 400);
+ vb2ex_msleep(120);
+ vb2ex_beep(120, 400);
break;
}
}