mirror of https://github.com/xemu-project/xemu.git
target/riscv: Remove unused paramters in pmp_hart_has_privs_default()
The addr and size parameters in pmp_hart_has_privs_default() are unused. Signed-off-by: Weiwei Li <liweiwei@iscas.ac.cn> Signed-off-by: Junqiang Wang <wangjunqiang@iscas.ac.cn> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Message-Id: <20230517091519.34439-7-liweiwei@iscas.ac.cn> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
This commit is contained in:
parent
b84ffd6e74
commit
97ec5aef08
|
@ -236,8 +236,7 @@ static int pmp_is_in_range(CPURISCVState *env, int pmp_index,
|
||||||
/*
|
/*
|
||||||
* Check if the address has required RWX privs when no PMP entry is matched.
|
* Check if the address has required RWX privs when no PMP entry is matched.
|
||||||
*/
|
*/
|
||||||
static bool pmp_hart_has_privs_default(CPURISCVState *env, target_ulong addr,
|
static bool pmp_hart_has_privs_default(CPURISCVState *env, pmp_priv_t privs,
|
||||||
target_ulong size, pmp_priv_t privs,
|
|
||||||
pmp_priv_t *allowed_privs,
|
pmp_priv_t *allowed_privs,
|
||||||
target_ulong mode)
|
target_ulong mode)
|
||||||
{
|
{
|
||||||
|
@ -309,8 +308,7 @@ bool pmp_hart_has_privs(CPURISCVState *env, target_ulong addr,
|
||||||
|
|
||||||
/* Short cut if no rules */
|
/* Short cut if no rules */
|
||||||
if (0 == pmp_get_num_rules(env)) {
|
if (0 == pmp_get_num_rules(env)) {
|
||||||
return pmp_hart_has_privs_default(env, addr, size, privs,
|
return pmp_hart_has_privs_default(env, privs, allowed_privs, mode);
|
||||||
allowed_privs, mode);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (size == 0) {
|
if (size == 0) {
|
||||||
|
@ -454,8 +452,7 @@ bool pmp_hart_has_privs(CPURISCVState *env, target_ulong addr,
|
||||||
|
|
||||||
/* No rule matched */
|
/* No rule matched */
|
||||||
if (!ret) {
|
if (!ret) {
|
||||||
ret = pmp_hart_has_privs_default(env, addr, size, privs,
|
ret = pmp_hart_has_privs_default(env, privs, allowed_privs, mode);
|
||||||
allowed_privs, mode);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in New Issue