arch/arm/src/armv6+7-m/up_vectors.c: Fix the type mismatch warning for _ebss

This commit is contained in:
Gregory Nutt 2018-08-24 07:04:51 -06:00
parent e1202d2ed3
commit 4824b04b44
2 changed files with 2 additions and 8 deletions

View File

@ -44,6 +44,7 @@
#include <nuttx/config.h>
#include "chip.h"
#include "up_internal.h"
/************************************************************************************
* Pre-processor Definitions
@ -71,10 +72,6 @@ extern void exception_common(void);
* Public data
************************************************************************************/
/* Provided by the linker script to indicate the end of the BSS */
extern char _ebss;
/* The v7m vector table consists of an array of function pointers, with the first
* slot (vector zero) used to hold the initial stack pointer.
*

View File

@ -39,6 +39,7 @@
#include <nuttx/config.h>
#include "chip.h"
#include "up_internal.h"
/************************************************************************************
* Pre-processor Definitions
@ -66,10 +67,6 @@ extern void exception_common(void);
* Public data
************************************************************************************/
/* Provided by the linker script to indicate the end of the BSS */
extern char _ebss;
/* The v7m vector table consists of an array of function pointers, with the first
* slot (vector zero) used to hold the initial stack pointer.
*