mirror of
https://github.com/apache/nuttx.git
synced 2026-08-10 15:05:07 +00:00
arm: armv7-a: Fix kernel stack dump in arm_assert.c
Summary: - This commit fixes kernel stack dump information Impact: - Affects armv7-a with kernel build Testing: - Built with sama5d4-ek:knsh - Not tested Signed-off-by: Masayuki Ishikawa <Masayuki.Ishikawa@jp.sony.com>
This commit is contained in:
parent
3c4bf1a2bf
commit
904a602c74
1 changed files with 1 additions and 1 deletions
|
|
@ -252,7 +252,7 @@ static void up_dumpstate(void)
|
|||
if (rtcb->xcp.kstack)
|
||||
{
|
||||
kstackbase = (uint32_t)rtcb->xcp.kstack +
|
||||
CONFIG_ARCH_KERNEL_STACKSIZE - 4;
|
||||
CONFIG_ARCH_KERNEL_STACKSIZE;
|
||||
|
||||
_alert("Kernel stack:\n");
|
||||
_alert(" base: %08x\n", kstackbase);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue