Ignore:
Timestamp:
2009-03-12T23:26:32Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
648c9d9
Parents:
3b122e9
Message:

arm32: update for the new scheme of device drivers and keyboard/serial modules
streamline arm32 port (as GXemul is still the only machine supported), more cleanup is needed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/arm32/src/mm/page_fault.c

    r3b122e9 r00287cc  
    3535#include <panic.h>
    3636#include <arch/exception.h>
    37 #include <arch/debug/print.h>
    3837#include <arch/mm/page_fault.h>
    3938#include <mm/as.h>
     
    183182        if (ret == AS_PF_FAULT) {
    184183                print_istate(istate);
    185                 dprintf("page fault - pc: %x, va: %x, status: %x(%x), "
     184                printf("page fault - pc: %x, va: %x, status: %x(%x), "
    186185                    "access:%d\n", istate->pc, badvaddr, fsr.status, fsr,
    187186                    access);
    188 
     187               
    189188                fault_if_from_uspace(istate, "Page fault: %#x.", badvaddr);
    190189                panic("Page fault.");
     
    202201
    203202        if (ret == AS_PF_FAULT) {
    204                 dprintf("prefetch_abort\n");
     203                printf("prefetch_abort\n");
    205204                print_istate(istate);
    206205                panic("page fault - prefetch_abort at address: %x.",
Note: See TracChangeset for help on using the changeset viewer.