diff options
author | Kyle McMartin | 2007-10-18 09:03:56 +0200 |
---|---|---|
committer | Kyle McMartin | 2007-10-18 09:59:04 +0200 |
commit | 7819994312fd4c3c04456abb6a64c810ecde3db4 (patch) | |
tree | beb8162cdd30fa344c5c12df471f7a618b3989dc /arch/parisc | |
parent | [PARISC] Kill zone_to_nid printk warning (diff) | |
download | kernel-qcow2-linux-7819994312fd4c3c04456abb6a64c810ecde3db4.tar.gz kernel-qcow2-linux-7819994312fd4c3c04456abb6a64c810ecde3db4.tar.xz kernel-qcow2-linux-7819994312fd4c3c04456abb6a64c810ecde3db4.zip |
[PARISC] Kill incorrect cast warning in unwinder
Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
Diffstat (limited to 'arch/parisc')
-rw-r--r-- | arch/parisc/kernel/unwind.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/parisc/kernel/unwind.c b/arch/parisc/kernel/unwind.c index cf780cb3b916..701b2d2d8882 100644 --- a/arch/parisc/kernel/unwind.c +++ b/arch/parisc/kernel/unwind.c @@ -209,8 +209,8 @@ static int unwind_init(void) static int unwind_special(struct unwind_frame_info *info, unsigned long pc, int frame_size) { - void handle_interruption(int, struct pt_regs *); - static unsigned long *hi = (unsigned long)&handle_interruption; + extern void handle_interruption(int, struct pt_regs *); + static unsigned long *hi = (unsigned long *)&handle_interruption; if (pc == get_func_addr(hi)) { struct pt_regs *regs = (struct pt_regs *)(info->sp - frame_size - PT_SZ_ALGN); |