9os

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit b28833829fedeb64de095dff2e23a6bff49a172f
parent 6a5f5e2b77469812b2d9faef90337513ab4dad6d
Author: Dimitris Papastamos <dimitris.papastamos@arm.com>
Date:   Fri, 12 Oct 2018 19:14:02 +0100

The EC field is at offset 26 within ESR

Change-Id: I1f51860ffd0f283e0742e5e5e1ca1db79be2282f
Signed-off-by: Dimitris Papastamos <dimitris.papastamos@arm.com>

Diffstat:
March/arm64/rom.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/rom.c b/arch/arm64/rom.c @@ -10,7 +10,7 @@ synchdl(struct trapframe *fp) dbg("sync handler\n"); - why = fp->esr >> 16; + why = fp->esr >> 26; cmd.imm1 = fp->esr & 0xff; cmd.imm2 = (fp->esr >> 8) & 0xff;