summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/bfin/cpu.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2018-08-29 12:41:35 -0500
committerJoel Sherrill <joel@rtems.org>2018-08-29 12:52:11 -0500
commitbc6964829cb8926f4ac95e2f499ffe845bf5d9b6 (patch)
tree180c9e0d454b4afe8eae95a7f590f98185a2736f /cpukit/score/cpu/bfin/cpu.c
parentpsim/include/tm27.h: Fix not a prototype warnings (diff)
downloadrtems-bc6964829cb8926f4ac95e2f499ffe845bf5d9b6.tar.bz2
score/cpu/bfin/cpu.c: Fix _CPU_Thread_Idle_body() prototype
Diffstat (limited to 'cpukit/score/cpu/bfin/cpu.c')
-rw-r--r--cpukit/score/cpu/bfin/cpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/score/cpu/bfin/cpu.c b/cpukit/score/cpu/bfin/cpu.c
index f5fb0c4cdd..00d0f21b41 100644
--- a/cpukit/score/cpu/bfin/cpu.c
+++ b/cpukit/score/cpu/bfin/cpu.c
@@ -169,7 +169,7 @@ void _CPU_ISR_install_vector(
}
#if (CPU_PROVIDES_IDLE_THREAD_BODY == TRUE)
-void *_CPU_Thread_Idle_body(uint32_t ignored)
+void *_CPU_Thread_Idle_body(uintptr_t ignored)
{
while (1) {
__asm__ __volatile__("ssync; idle; ssync");