summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2024-06-17 09:37:08 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2024-06-17 09:37:08 +0000
commit0d07342c6bb9b67417749fa232fd60793652bafc (patch)
tree4555d2cf7643863a0c8fd77d5b271d7ad7df3aa6 /sys
parent33119d913d70338484f7e2a342f221a2366c7204 (diff)
KNF
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/riscv64/stand/efiboot/efiboot.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/arch/riscv64/stand/efiboot/efiboot.c b/sys/arch/riscv64/stand/efiboot/efiboot.c
index ba319d673f5..1f52ac37859 100644
--- a/sys/arch/riscv64/stand/efiboot/efiboot.c
+++ b/sys/arch/riscv64/stand/efiboot/efiboot.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: efiboot.c,v 1.8 2024/06/17 09:12:45 kettenis Exp $ */
+/* $OpenBSD: efiboot.c,v 1.9 2024/06/17 09:37:07 kettenis Exp $ */
/*
* Copyright (c) 2015 YASUOKA Masahiko <yasuoka@yasuoka.net>
@@ -96,8 +96,7 @@ efi_main(EFI_HANDLE image, EFI_SYSTEM_TABLE *systab)
/* disable reset by watchdog after 5 minutes */
BS->SetWatchdogTimer(0, 0, 0, NULL);
- status = BS->HandleProtocol(image, &imgp_guid,
- (void **)&imgp);
+ status = BS->HandleProtocol(image, &imgp_guid, (void **)&imgp);
if (status == EFI_SUCCESS)
status = BS->HandleProtocol(imgp->DeviceHandle, &devp_guid,
(void **)&dp);