Merged in masayuki2009/nuttx.nuttx/fix_lc823450_build_errors (pull request #638)

arch/arm/src/lc823450: Fix some recently introduced build issues

Reported-by: Wig Cheng <wig.cheng@relajet.com>
Signed-off-by: Masayuki Ishikawa <Masayuki.Ishikawa@jp.sony.com>

Approved-by: Gregory Nutt <gnutt@nuttx.org>
This commit is contained in:
Masayuki Ishikawa 2018-05-11 12:19:29 +00:00 committed by Gregory Nutt
parent 024364eeef
commit f4bcaa4fc2
2 changed files with 3 additions and 2 deletions

View File

@ -124,6 +124,7 @@ config ARCH_CHIP_LC823450
select ARCH_HAVE_MULTICPU
select ARCH_HAVE_I2CRESET
select ARCH_GLOBAL_IRQDISABLE
select ARCH_IDLE_CUSTOM
---help---
ON Semiconductor LC823450 architectures (ARM dual Cortex-M3)

View File

@ -83,13 +83,13 @@ endif
CHIP_ASRCS =
CHIP_CSRCS = lc823450_start.c lc823450_irq.c .c lc823450_timer.c
CHIP_CSRCS = lc823450_start.c lc823450_irq.c lc823450_timer.c
CHIP_CSRCS += lc823450_lowputc.c lc823450_serial.c lc823450_clockconfig.c
CHIP_CSRCS += lc823450_syscontrol.c lc823450_gpio.c
# Configuration-dependent LC823450 files
ifneq ($(CONFIG_ARCH_IDLE_CUSTOM),y)
ifeq ($(CONFIG_ARCH_IDLE_CUSTOM),y)
CHIP_CSRCS += lc823450_idle.c
endif