target-arm: remove raw_read|write duplication
There is an inline duplication of the raw_read and raw_write function bodies. Fix by just calling raw_read/raw_write instead. Signed-off-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Message-id: e69281b7e1462b346cb313cf0b89eedc0568125f.1388649290.git.peter.crosthwaite@xilinx.com Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
d045815a57
commit
8455bc76c7
@ -142,11 +142,7 @@ static bool read_raw_cp_reg(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
} else if (ri->readfn) {
|
||||
return (ri->readfn(env, ri, v) == 0);
|
||||
} else {
|
||||
if (ri->type & ARM_CP_64BIT) {
|
||||
*v = CPREG_FIELD64(env, ri);
|
||||
} else {
|
||||
*v = CPREG_FIELD32(env, ri);
|
||||
}
|
||||
raw_read(env, ri, v);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
@ -167,11 +163,7 @@ static bool write_raw_cp_reg(CPUARMState *env, const ARMCPRegInfo *ri,
|
||||
} else if (ri->writefn) {
|
||||
return (ri->writefn(env, ri, v) == 0);
|
||||
} else {
|
||||
if (ri->type & ARM_CP_64BIT) {
|
||||
CPREG_FIELD64(env, ri) = v;
|
||||
} else {
|
||||
CPREG_FIELD32(env, ri) = v;
|
||||
}
|
||||
raw_write(env, ri, v);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user