dect
/
linux-2.6
Archived
13
0
Fork 0

[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>
This commit is contained in:
Horms 2006-12-12 18:06:13 +09:00 committed by Tony Luck
parent ad1c3ba7e5
commit 53da5763bf
1 changed files with 5 additions and 2 deletions

View File

@ -19,8 +19,11 @@
#include <asm/delay.h>
#include <asm/meminit.h>
typedef void (*relocate_new_kernel_t)(unsigned long, unsigned long,
struct ia64_boot_param *, unsigned long);
typedef NORET_TYPE void (*relocate_new_kernel_t)(
unsigned long indirection_page,
unsigned long start_address,
struct ia64_boot_param *boot_param,
unsigned long pal_addr) ATTRIB_NORET;
struct kimage *ia64_kimage;