arch/arm/src/armv7-a: Fix assemble error when including gic.h

This commit is contained in:
Xiang Xiao 2019-03-19 11:19:09 -06:00 committed by Gregory Nutt
parent f36ce38991
commit 7e9a060202

View File

@ -2,7 +2,7 @@
* arch/arm/src/armv7-a/gic.h
* Generic Interrupt Controller Version 2 Definitions
*
* Copyright (C) 2016 Gregory Nutt. All rights reserved.
* Copyright (C) 2016, 2019 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Reference:
@ -50,8 +50,10 @@
#include "nuttx/config.h"
#include <sys/types.h>
#include <stdint.h>
#ifndef __ASSEMBLY__
# include <sys/types.h>
# include <stdint.h>
#endif
#include "mpcore.h"
#include "up_arch.h"