summaryrefslogtreecommitdiff
path: root/sys/arch/arm64/stand/efiboot/efiacpi.c
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2021-06-06 23:56:56 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2021-06-06 23:56:56 +0000
commit49efcbcc3303f8fcf7f05ce3fab0ef20e364507b (patch)
tree0facc57a8460056a6aca9e2c461330a018382b93 /sys/arch/arm64/stand/efiboot/efiacpi.c
parentade32329c738efec582d91dc129d77769615938f (diff)
Replace all uses of 'EFI_CALL(func, params)' with
the expansion 'func(params)'. Allows upcoming removal of eficall.h. Tested & ok naddy@
Diffstat (limited to 'sys/arch/arm64/stand/efiboot/efiacpi.c')
-rw-r--r--sys/arch/arm64/stand/efiboot/efiacpi.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/arm64/stand/efiboot/efiacpi.c b/sys/arch/arm64/stand/efiboot/efiacpi.c
index 4b315cc8c1c..f88a1bd1446 100644
--- a/sys/arch/arm64/stand/efiboot/efiacpi.c
+++ b/sys/arch/arm64/stand/efiboot/efiacpi.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: efiacpi.c,v 1.11 2021/03/23 09:41:12 patrick Exp $ */
+/* $OpenBSD: efiacpi.c,v 1.12 2021/06/06 23:56:55 krw Exp $ */
/*
* Copyright (c) 2018 Mark Kettenis <kettenis@openbsd.org>
@@ -21,7 +21,6 @@
#include <efi.h>
#include <efiapi.h>
-#include "eficall.h"
#include "fdt.h"
#include "libsa.h"