aboutsummaryrefslogtreecommitdiff
path: root/arch/riscv/init/head.S
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2021-09-25 12:24:24 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2021-09-25 12:24:24 +0300
commit13fe461374c0716404e2ee7726781b9cd12dbaa7 (patch)
tree8081e42fbebe8561d87f4e685e0f2c38b40fc0c4 /arch/riscv/init/head.S
parent68fcd6d027b88581992b4fb10ee1edc301e30678 (diff)
downloadkmi-13fe461374c0716404e2ee7726781b9cd12dbaa7.tar.gz
kmi-13fe461374c0716404e2ee7726781b9cd12dbaa7.zip
Added default stack location
Diffstat (limited to 'arch/riscv/init/head.S')
-rw-r--r--arch/riscv/init/head.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/riscv/init/head.S b/arch/riscv/init/head.S
index bbd2945..3589ead 100644
--- a/arch/riscv/init/head.S
+++ b/arch/riscv/init/head.S
@@ -2,6 +2,6 @@
.global _start
.type _start, @function
_start:
- /* stack pointer is whatever? */
+ li sp, PM_STACK_TOP
/* go to proper init */
j init