svn commit: r269827 - projects/arm64/sys/boot/efi/libefi
Andrew Turner
andrew at FreeBSD.org
Mon Aug 11 18:57:22 UTC 2014
Author: andrew
Date: Mon Aug 11 18:57:22 2014
New Revision: 269827
URL: http://svnweb.freebsd.org/changeset/base/269827
Log:
Fix EFI build breakage: efi_register_handles was missing a parameter.
Submitted by: Robin Randhawa <robin.randhawa AT arm.com>
Modified:
projects/arm64/sys/boot/efi/libefi/efisimplefs.c
Modified: projects/arm64/sys/boot/efi/libefi/efisimplefs.c
==============================================================================
--- projects/arm64/sys/boot/efi/libefi/efisimplefs.c Mon Aug 11 18:57:18 2014 (r269826)
+++ projects/arm64/sys/boot/efi/libefi/efisimplefs.c Mon Aug 11 18:57:22 2014 (r269827)
@@ -356,7 +356,7 @@ efisfs_init(void)
nout++;
}
- err = efi_register_handles(&efisfs_dev, hout, nout);
+ err = efi_register_handles(&efisfs_dev, hout, NULL, nout);
free(hin);
return (err);
}
More information about the svn-src-projects
mailing list