arm: mpu: Adjust to use opaque kernel data types

This patch adjusts the ARM MPU implementation to be compliant to the
recent changes that introduced the opaque kernel data types.

Signed-off-by: Andy Gross <andy.gross@linaro.org>
This commit is contained in:
Andy Gross 2017-08-02 15:14:49 -05:00 committed by Kumar Gala
commit 5930e9d02d
2 changed files with 8 additions and 6 deletions

View file

@ -64,8 +64,7 @@ void _new_thread(struct k_thread *thread, k_thread_stack_t stack,
char *stackEnd = pStackMem + stackSize;
struct __esf *pInitCtx;
_new_thread_init(thread, K_THREAD_STACK_BUFFER(pStackMem), stackSize,
priority, options);
_new_thread_init(thread, pStackMem, stackSize, priority, options);
/* carve the thread entry struct from the "base" of the stack */