[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 5/8] target/riscv: Remove redundant parentheses
From: |
Weiwei Li |
Subject: |
[PATCH 5/8] target/riscv: Remove redundant parentheses |
Date: |
Fri, 24 Mar 2023 20:38:06 +0800 |
Remove redundant parentheses in get_physical_address.
Signed-off-by: Weiwei Li <liweiwei@iscas.ac.cn>
Signed-off-by: Junqiang Wang <wangjunqiang@iscas.ac.cn>
---
target/riscv/cpu_helper.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/target/riscv/cpu_helper.c b/target/riscv/cpu_helper.c
index 3862e7b677..de2d4a8c1d 100644
--- a/target/riscv/cpu_helper.c
+++ b/target/riscv/cpu_helper.c
@@ -1050,7 +1050,7 @@ restart:
if ((pte & PTE_R) || ((pte & PTE_X) && mxr)) {
*prot |= PAGE_READ;
}
- if ((pte & PTE_X)) {
+ if (pte & PTE_X) {
*prot |= PAGE_EXEC;
}
/* add write permission on stores or if the page is already dirty,
--
2.25.1
- [PATCH 0/8] target/riscv: Simplification for RVH related check and code style fix, Weiwei Li, 2023/03/24
- [PATCH 1/8] target/riscv: Remove redundant call to riscv_cpu_virt_enabled, Weiwei Li, 2023/03/24
- [PATCH 3/8] target/riscv: Remove check on RVH for riscv_cpu_virt_enabled, Weiwei Li, 2023/03/24
- [PATCH 5/8] target/riscv: Remove redundant parentheses,
Weiwei Li <=
- [PATCH 2/8] target/riscv: Remove redundant check on RVH, Weiwei Li, 2023/03/24
- [PATCH 4/8] target/riscv: Remove check on RVH for riscv_cpu_set_virt_enabled, Weiwei Li, 2023/03/24
- [PATCH 7/8] target/riscv: Fix format for comments, Weiwei Li, 2023/03/24
- [PATCH 8/8] target/riscv: Fix lines with over 80 characters, Weiwei Li, 2023/03/24
- [PATCH 6/8] target/riscv: Fix format for indentation, Weiwei Li, 2023/03/24