Add missing #includes required to reference non-kernel APIs
Several files were not explicitly including APIs that they reference, which could eventually lead to trouble. Change-Id: Ib33cadfa658280df3fcb4c670463d41b63097b31 Signed-off-by: Allan Stephens <allan.stephens@windriver.com>
This commit is contained in:
parent
a27910091a
commit
d6db256249
|
@ -41,6 +41,8 @@ ARM-specific nanokernel exception handling interface. Included by ARM/arch.h.
|
|||
#ifdef _ASMLANGUAGE
|
||||
GTEXT(_ExcExit);
|
||||
#else
|
||||
#include <stdint.h>
|
||||
|
||||
struct __esf {
|
||||
uint32_t a1; /* r0 */
|
||||
uint32_t a2; /* r1 */
|
||||
|
|
|
@ -38,6 +38,7 @@
|
|||
#include <minik.h>
|
||||
|
||||
#include <misc/__assert.h>
|
||||
#include <misc/util.h>
|
||||
|
||||
/*******************************************************************************
|
||||
*
|
||||
|
|
|
@ -33,6 +33,7 @@
|
|||
#include <minik.h>
|
||||
#include <k_pipe_buffer.h>
|
||||
#include <k_pipe_util.h>
|
||||
#include <misc/util.h>
|
||||
|
||||
/*******************************************************************************
|
||||
*
|
||||
|
|
|
@ -36,6 +36,7 @@
|
|||
#include <toolchain.h>
|
||||
#include <sections.h>
|
||||
#include <misc/__assert.h>
|
||||
#include <misc/util.h>
|
||||
|
||||
#define FORCE_XFER_ON_STALL
|
||||
|
||||
|
|
|
@ -43,6 +43,8 @@
|
|||
|
||||
#include <string.h>
|
||||
|
||||
#include <misc/util.h>
|
||||
|
||||
/* uncomment the define below to use floating point arithmetic */
|
||||
/* #define FLOAT */
|
||||
|
||||
|
|
Loading…
Reference in a new issue