From 92f1731bf391532a097f668d3549159dd7d241c2 Mon Sep 17 00:00:00 2001 From: Kyle Evans Date: Tue, 13 Mar 2018 15:02:46 +0000 Subject: [PATCH] Correct minor typo in comment, efi_dmcap -> efi_tmcap --- sys/dev/efidev/efirt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/efidev/efirt.c b/sys/dev/efidev/efirt.c index c145ee271e4..6fd6d0066e3 100644 --- a/sys/dev/efidev/efirt.c +++ b/sys/dev/efidev/efirt.c @@ -268,7 +268,7 @@ efi_get_time(struct efi_tm *tm) /* * UEFI spec states that the Capabilities argument to GetTime is * optional, but some UEFI implementations choke when passed a NULL - * pointer. Pass a dummy efi_dmcap, even though we won't use it, + * pointer. Pass a dummy efi_tmcap, even though we won't use it, * to workaround such implementations. */ error = efi_get_time_locked(tm, &dummy);