diff options
author | Paul Mundt <lethal@linux-sh.org> | 2008-09-29 06:44:40 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-09-29 06:44:40 -0400 |
commit | 091db04559a62a00769553c9120623c2f6bc8b4d (patch) | |
tree | f572e29fdab363a70efdd6d26680143c21e2868e /arch/sh | |
parent | 88856d67cf6b787447889915bafd541be20b8630 (diff) |
sh: Fix up signal_64 cast warnings.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/kernel/signal_64.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sh/kernel/signal_64.c b/arch/sh/kernel/signal_64.c index 0582ae4739ba..ce3e851dffcb 100644 --- a/arch/sh/kernel/signal_64.c +++ b/arch/sh/kernel/signal_64.c | |||
@@ -563,7 +563,7 @@ static void setup_frame(int sig, struct k_sigaction *ka, | |||
563 | (DEREF_REG_PR | NEFF_MASK) : DEREF_REG_PR; | 563 | (DEREF_REG_PR | NEFF_MASK) : DEREF_REG_PR; |
564 | 564 | ||
565 | if (__copy_to_user(frame->retcode, | 565 | if (__copy_to_user(frame->retcode, |
566 | (unsigned long long)sa_default_restorer & (~1), 16) != 0) | 566 | (void *)((unsigned long)sa_default_restorer & (~1)), 16) != 0) |
567 | goto give_sigsegv; | 567 | goto give_sigsegv; |
568 | 568 | ||
569 | /* Cohere the trampoline with the I-cache. */ | 569 | /* Cohere the trampoline with the I-cache. */ |
@@ -681,7 +681,7 @@ static void setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info, | |||
681 | (DEREF_REG_PR | NEFF_MASK) : DEREF_REG_PR; | 681 | (DEREF_REG_PR | NEFF_MASK) : DEREF_REG_PR; |
682 | 682 | ||
683 | if (__copy_to_user(frame->retcode, | 683 | if (__copy_to_user(frame->retcode, |
684 | (unsigned long long)sa_default_rt_restorer & (~1), 16) != 0) | 684 | (void *)((unsigned long)sa_default_rt_restorer & (~1)), 16) != 0) |
685 | goto give_sigsegv; | 685 | goto give_sigsegv; |
686 | 686 | ||
687 | flush_icache_range(DEREF_REG_PR-1, DEREF_REG_PR-1+15); | 687 | flush_icache_range(DEREF_REG_PR-1, DEREF_REG_PR-1+15); |