diff options
-rw-r--r-- | runtime/ChangeLog | 4 | ||||
-rw-r--r-- | runtime/regs.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/runtime/ChangeLog b/runtime/ChangeLog index a9696791..4f4e5524 100644 --- a/runtime/ChangeLog +++ b/runtime/ChangeLog @@ -1,3 +1,7 @@ +2007-07-05 Eugene Teo <eteo@redhat.com> + + * regs.c (_stp_print_regs): #ifdef CONFIG_CPU_CP15 instead. + 2007-07-02 Martin Hunt <hunt@redhat.com> * sym.c (_stp_kallsyms_lookup): Improve heuristic diff --git a/runtime/regs.c b/runtime/regs.c index 00130e99..bc717695 100644 --- a/runtime/regs.c +++ b/runtime/regs.c @@ -253,7 +253,7 @@ void _stp_print_regs(struct pt_regs * regs) processor_modes[processor_mode(regs)], thumb_mode(regs) ? " (T)" : "", get_fs() == get_ds() ? "kernel" : "user"); -#if CONFIG_CPU_CP15 +#ifdef CONFIG_CPU_CP15 { unsigned int ctrl; __asm__ ( |