Commit 066a6b20 authored by David Mosberger's avatar David Mosberger

ia64: Fix compiler warning in intrinsics.h.

parent 7b126b19
......@@ -167,7 +167,7 @@ extern long ia64_cmpxchg_called_with_bad_pointer (void);
if (_cmpxchg_bugcheck_count-- <= 0) { \
void *ip; \
extern int printk(const char *fmt, ...); \
ip = ia64_getreg(_IA64_REG_IP); \
ip = (void *) ia64_getreg(_IA64_REG_IP); \
printk("CMPXCHG_BUGCHECK: stuck at %p on word %p\n", ip, (v)); \
break; \
} \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment