From: Matthew Garrett Date: Wed, 6 Jul 2011 20:48:49 +0000 (-0400) Subject: efi: Fix argument types for SetVariable() for ia64 X-Git-Tag: v3.1-rc1~28^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1eb9a4b8a3c8a141cf2ab27309f089923b69c707;p=platform%2Fkernel%2Flinux-exynos.git efi: Fix argument types for SetVariable() for ia64 The spec says this takes uint32 for attributes, not uintn. Signed-off-by: Matthew Garrett Signed-off-by: Tony Luck --- diff --git a/arch/ia64/kernel/efi.c b/arch/ia64/kernel/efi.c index 6fc03af..c38d22e 100644 --- a/arch/ia64/kernel/efi.c +++ b/arch/ia64/kernel/efi.c @@ -156,7 +156,7 @@ prefix##_get_next_variable (unsigned long *name_size, efi_char16_t *name, \ #define STUB_SET_VARIABLE(prefix, adjust_arg) \ static efi_status_t \ prefix##_set_variable (efi_char16_t *name, efi_guid_t *vendor, \ - unsigned long attr, unsigned long data_size, \ + u32 attr, unsigned long data_size, \ void *data) \ { \ struct ia64_fpreg fr[6]; \