summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/i386/cpu.c
diff options
context:
space:
mode:
authorCillian O'Donnell <cpodonnell8@gmail.com>2017-04-08 11:30:50 +0100
committerJoel Sherrill <joel@rtems.org>2017-04-14 13:01:13 -0500
commit62c238e8f20082f22367108792d38e2a62ade711 (patch)
tree07db1a624828bbd772f25bc6a8aba3ab1c4c6780 /cpukit/score/cpu/i386/cpu.c
parentlibchip/network/dec21140.c: Use inttypes.h to fix 1 warning. (diff)
downloadrtems-62c238e8f20082f22367108792d38e2a62ade711.tar.bz2
cpukit/../i386/cpu.c: Use inttypes.h to fix 1 warning.
Diffstat (limited to 'cpukit/score/cpu/i386/cpu.c')
-rw-r--r--cpukit/score/cpu/i386/cpu.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpukit/score/cpu/i386/cpu.c b/cpukit/score/cpu/i386/cpu.c
index d839f1e224..447d8ae273 100644
--- a/cpukit/score/cpu/i386/cpu.c
+++ b/cpukit/score/cpu/i386/cpu.c
@@ -104,7 +104,8 @@ void _CPU_Initialize(void)
uint32_t cr4;
__asm__ __volatile__("mov %%cr4, %0":"=r"(cr4));
if ( 0x600 != (cr4 & 0x600) ) {
- printk("PANIC: RTEMS was compiled for SSE but BSP did not enable it (CR4: 0x%08x)\n", cr4);
+ printk("PANIC: RTEMS was compiled for SSE but BSP did not enable it"
+ "(CR4: 0%" PRIu32 ")\n", cr4);
while ( 1 ) {
__asm__ __volatile__("hlt");
}