diff options
author | Anup Patel <anup.patel@wdc.com> | 2020-03-04 14:10:03 +0530 |
---|---|---|
committer | Anup Patel <anup@brainfault.org> | 2020-03-08 11:13:31 +0530 |
commit | 4a603eb6dc44df61f8f5c60121fb33e2707a72bd (patch) | |
tree | 1b04d972b8e886c61d04b460235dae71d29004ea /platform | |
parent | a148996a7f9097a1f8e43cc62bd65972b008cad4 (diff) |
platform: kendryte/k210: Set per-HART stack size to 8KB
All platform except kendryte/k210 use 8KB of per-HART stack hence
this patch set per-HART stack size of kendryte/k210 to 8KB for
consistency.
Signed-off-by: Anup Patel <anup.patel@wdc.com>
Reviewed-by: Atish Patra <atish.patra@wdc.com>
Diffstat (limited to 'platform')
-rw-r--r-- | platform/kendryte/k210/platform.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/kendryte/k210/platform.h b/platform/kendryte/k210/platform.h index 0596a91..8e4664f 100644 --- a/platform/kendryte/k210/platform.h +++ b/platform/kendryte/k210/platform.h @@ -12,7 +12,7 @@ #include <sbi/riscv_io.h> #define K210_HART_COUNT 2 -#define K210_HART_STACK_SIZE 4096 +#define K210_HART_STACK_SIZE 8192 #define K210_UART_BAUDRATE 115200 |