Message ID | 20171203230830.18187-1-agraf@suse.de |
---|---|
State | New |
Headers | show |
Series | [PULL] efi patch queue 2017-12-04 | expand |
On Mon, Dec 04, 2017 at 12:08:30AM +0100, Alexander Graf wrote: > Hi Tom, > > This is my current patch queue for efi. Please pull. > > Alex > > > The following changes since commit 9804d88630cdb22f5f0ace05ac05942928410fd9: > > Merge branch 'rmobile-mx' of git://git.denx.de/u-boot-sh (2017-11-30 10:39:04 -0500) > > are available in the git repository at: > > git://github.com/agraf/u-boot.git tags/signed-efi-next > > for you to fetch changes up to 3bb74f9800cdc4cf10a87f2725242c2565256654: > > efi_loader helloworld.efi: Fix building with -Os (2017-12-01 22:31:00 +0100) > NAK. New warnings on at least qemu-x86_efi_payload32 qemu-x86_efi_payload64: /home/trini/work/u-boot/u-boot/lib/efi/efi_stub.c: In function ‘efi_main’: /home/trini/work/u-boot/u-boot/lib/efi/efi_stub.c:298:29: warning: passing argument 1 of ‘boot->get_memory_map’ from incompatible pointer type [-Wincompatible-pointer-types] ret = boot->get_memory_map(&size, NULL, &key, &desc_size, &version); ^ /home/trini/work/u-boot/u-boot/lib/efi/efi_stub.c:298:29: note: expected ‘size_t * {aka unsigned int *}’ but argument is of type ‘ulong * {aka long unsigned int *}’ /home/trini/work/u-boot/u-boot/lib/efi/efi_stub.c:298:42: warning: passing argument 3 of ‘boot->get_memory_map’ from incompatible pointer type [-Wincompatible-pointer-types] ret = boot->get_memory_map(&size, NULL, &key, &desc_size, &version); ^ /home/trini/work/u-boot/u-boot/lib/efi/efi_stub.c:298:42: note: expected ‘size_t * {aka unsigned int *}’ but argument is of type ‘ulong * {aka long unsigned int *}’ /home/trini/work/u-boot/u-boot/lib/efi/efi_stub.c:298:48: warning: passing argument 4 of ‘boot->get_memory_map’ from incompatible pointer type [-Wincompatible-pointer-types] ret = boot->get_memory_map(&size, NULL, &key, &desc_size, &version); ^ /home/trini/work/u-boot/u-boot/lib/efi/efi_stub.c:298:48: note: expected ‘size_t * {aka unsigned int *}’ but argument is of type ‘ulong * {aka long unsigned int *}’ /home/trini/work/u-boot/u-boot/lib/efi/efi_stub.c:316:29: warning: passing argument 1 of ‘boot->get_memory_map’ from incompatible pointer type [-Wincompatible-pointer-types] ret = boot->get_memory_map(&size, desc, &key, &desc_size, &version); ^ /home/trini/work/u-boot/u-boot/lib/efi/efi_stub.c:316:29: note: expected ‘size_t * {aka unsigned int *}’ but argument is of type ‘ulong * {aka long unsigned int *}’ /home/trini/work/u-boot/u-boot/lib/efi/efi_stub.c:316:42: warning: passing argument 3 of ‘boot->get_memory_map’ from incompatible pointer type [-Wincompatible-pointer-types] ret = boot->get_memory_map(&size, desc, &key, &desc_size, &version); ^ /home/trini/work/u-boot/u-boot/lib/efi/efi_stub.c:316:42: note: expected ‘size_t * {aka unsigned int *}’ but argument is of type ‘ulong * {aka long unsigned int *}’ /home/trini/work/u-boot/u-boot/lib/efi/efi_stub.c:316:48: warning: passing argument 4 of ‘boot->get_memory_map’ from incompatible pointer type [-Wincompatible-pointer-types] ret = boot->get_memory_map(&size, desc, &key, &desc_size, &version); ^ /home/trini/work/u-boot/u-boot/lib/efi/efi_stub.c:316:48: note: expected ‘size_t * {aka unsigned int *}’ but argument is of type ‘ulong * {aka long unsigned int *}’ /home/trini/work/u-boot/u-boot/lib/efi/efi_stub.c:334:30: warning: passing argument 1 of ‘boot->get_memory_map’ from incompatible pointer type [-Wincompatible-pointer-types] ret = boot->get_memory_map(&size, desc, &key, &desc_size, ^ /home/trini/work/u-boot/u-boot/lib/efi/efi_stub.c:334:30: note: expected ‘size_t * {aka unsigned int *}’ but argument is of type ‘ulong * {aka long unsigned int *}’ /home/trini/work/u-boot/u-boot/lib/efi/efi_stub.c:334:43: warning: passing argument 3 of ‘boot->get_memory_map’ from incompatible pointer type [-Wincompatible-pointer-types] ret = boot->get_memory_map(&size, desc, &key, &desc_size, ^ /home/trini/work/u-boot/u-boot/lib/efi/efi_stub.c:334:43: note: expected ‘size_t * {aka unsigned int *}’ but argument is of type ‘ulong * {aka long unsigned int *}’ /home/trini/work/u-boot/u-boot/lib/efi/efi_stub.c:334:49: warning: passing argument 4 of ‘boot->get_memory_map’ from incompatible pointer type [-Wincompatible-pointer-types] ret = boot->get_memory_map(&size, desc, &key, &desc_size, ^ /home/trini/work/u-boot/u-boot/lib/efi/efi_stub.c:334:49: note: expected ‘size_t * {aka unsigned int *}’ but argument is of type ‘ulong * {aka long unsigned int *}’ -- Tom