Skip to content

Commit

Permalink
returned exception, removed std_exception from start.S
Browse files Browse the repository at this point in the history
  • Loading branch information
jad13041 committed Jan 14, 2020
1 parent 7d1e3e3 commit 42e72b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arch/powerpc/cpu/mpc85xx/start.S
Original file line number Diff line number Diff line change
Expand Up @@ -1247,7 +1247,7 @@ _start_of_vectors:
MCK_EXCEPTION(0x200, MachineCheck, MachineCheckException)

/* Data Storage exception. */
STD_EXCEPTION(0x0300, DataStorage, UnknownException)
//STD_EXCEPTION(0x0300, DataStorage, UnknownException)

/* Instruction Storage exception. */
STD_EXCEPTION(0x0400, InstStorage, UnknownException)
Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/cpu/mpc85xx/traps.c
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ void UnknownException(struct pt_regs *regs)

printf("Bad trap at PC: %lx, SR: %lx, vector=%lx\n",
regs->nip, regs->msr, regs->trap);
//_exception(0, regs);
_exception(0, regs);
}

void ExtIntException(struct pt_regs *regs)
Expand Down

0 comments on commit 42e72b4

Please sign in to comment.