aboutsummaryrefslogtreecommitdiff
path: root/arch/riscv64
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2022-05-24 21:18:55 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2022-05-24 21:18:55 +0300
commite033569910aecb4d8fb437a622e542b8803834ec (patch)
treeb7e31d1b266dfbd3b1aa79ae4db47d584541c8bc /arch/riscv64
parent12be40e22aae582cca9abbd151031edaab800cae (diff)
downloadkmi-e033569910aecb4d8fb437a622e542b8803834ec.tar.gz
kmi-e033569910aecb4d8fb437a622e542b8803834ec.zip
initial musings about exec
Diffstat (limited to 'arch/riscv64')
-rw-r--r--arch/riscv64/include/vmem.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/riscv64/include/vmem.h b/arch/riscv64/include/vmem.h
index fc3df00..46c12b1 100644
--- a/arch/riscv64/include/vmem.h
+++ b/arch/riscv64/include/vmem.h
@@ -16,10 +16,10 @@
* riscv64.
*/
#if __riscv_xlen == 64
- /** When running riscv64, each page table has 512 8byte entries. */
+/** When running riscv64, each page table has 512 8byte entries. */
#define RISCV_NUM_LEAVES 512
#else
- /** When running riscv32, each page table has 1024 4byte entries. */
+/** When running riscv32, each page table has 1024 4byte entries. */
#define RISCV_NUM_LEAVES 1024
#endif