Browse Source

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

This reverts commit d567df02b9.
tags/v0.6.0-rc1
Øyvind Harboe 12 years ago
parent
commit
7d2bf8805d
4 changed files with 8 additions and 14 deletions
  1. +2
    -4
      src/flash/nor/Makefile.am
  2. +2
    -3
      src/flash/nor/drivers.c
  3. +2
    -4
      src/target/Makefile.am
  4. +2
    -3
      src/target/target.c

+ 2
- 4
src/flash/nor/Makefile.am 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 \


+ 2
- 3
src/flash/nor/drivers.c 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,
};



+ 2
- 4
src/target/Makefile.am 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 \


+ 2
- 3
src/target/target.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,


Loading…
Cancel
Save