Revert "dsp5680xx: disable for now, it generates warnings"

This reverts commit d567df02b9.
This commit is contained in:
Øyvind Harboe 2011-08-09 20:14:50 +02:00
parent c2c19c5018
commit 7d2bf8805d
4 changed files with 8 additions and 14 deletions

View File

@ -31,10 +31,8 @@ NOR_DRIVERS = \
str9xpec.c \
tms470.c \
virtual.c \
fm3.c
# Disabled for now, it generates warnings
# dsp5680xx_flash.c
fm3.c \
dsp5680xx_flash.c
noinst_HEADERS = \
core.h \

View File

@ -43,7 +43,7 @@ extern struct flash_driver faux_flash;
extern struct flash_driver virtual_flash;
extern struct flash_driver stmsmi_flash;
extern struct flash_driver em357_flash;
//extern struct flash_driver dsp5680xx_flash;
extern struct flash_driver dsp5680xx_flash;
extern struct flash_driver fm3_flash;
/**
@ -73,9 +73,8 @@ static struct flash_driver *flash_drivers[] = {
&virtual_flash,
&stmsmi_flash,
&em357_flash,
// Disabled for now, it generates warnings
//&dsp5680xx_flash,
&fm3_flash,
&dsp5680xx_flash,
NULL,
};

View File

@ -33,10 +33,8 @@ libtarget_la_SOURCES = \
$(MIPS32_SRC) \
avrt.c \
dsp563xx.c \
dsp563xx_once.c
# This file generates warnings, disabled for now, see also target.c
# dsp5680xx.c
dsp563xx_once.c \
dsp5680xx.c
TARGET_CORE_SRC = \
algorithm.c \

View File

@ -81,7 +81,7 @@ extern struct target_type arm11_target;
extern struct target_type mips_m4k_target;
extern struct target_type avr_target;
extern struct target_type dsp563xx_target;
//extern struct target_type dsp5680xx_target;
extern struct target_type dsp5680xx_target;
extern struct target_type testee_target;
extern struct target_type avr32_ap7k_target;
@ -104,8 +104,7 @@ static struct target_type *target_types[] =
&mips_m4k_target,
&avr_target,
&dsp563xx_target,
// Disabled for now, it generates warnings
// &dsp5680xx_target,
&dsp5680xx_target,
&testee_target,
&avr32_ap7k_target,
NULL,