[IA64] kexec/kdump: tidy up declaration of relocate_new_kernel_t

* Make NORET_TYPE and ATTRIB_NORET in line with the
declaration for other architectures
* Add parameter names

Signed-Off-By: Simon Horman <horms@verge.net.au>
Signed-off-by: Tony Luck <tony.luck@intel.com>

authored by Horms and committed by Tony Luck 53da5763 ad1c3ba7

+5 -2
+5 -2
arch/ia64/kernel/machine_kexec.c
··· 19 19 #include <asm/delay.h> 20 20 #include <asm/meminit.h> 21 21 22 - typedef void (*relocate_new_kernel_t)(unsigned long, unsigned long, 23 - struct ia64_boot_param *, unsigned long); 22 + typedef NORET_TYPE void (*relocate_new_kernel_t)( 23 + unsigned long indirection_page, 24 + unsigned long start_address, 25 + struct ia64_boot_param *boot_param, 26 + unsigned long pal_addr) ATTRIB_NORET; 24 27 25 28 struct kimage *ia64_kimage; 26 29