diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-04 16:40:19 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-04 16:56:24 -0800 |
commit | f3e6f584f12dbde9ba9806ed4a412db0524d438c (patch) | |
tree | 540a062c416548d3a9c7698c2411a7d688901452 | |
parent | ae6374e25dae7b02636e440549b87040d03cc5aa (diff) | |
download | riscv-openocd-f3e6f584f12dbde9ba9806ed4a412db0524d438c.zip riscv-openocd-f3e6f584f12dbde9ba9806ed4a412db0524d438c.tar.gz riscv-openocd-f3e6f584f12dbde9ba9806ed4a412db0524d438c.tar.bz2 |
remove flash.h from tree
Remove the now vestigial <flash/flash.h> header from the tree,
replacing a few references with <flash/nor/core.h>
-rw-r--r-- | src/flash/Makefile.am | 1 | ||||
-rw-r--r-- | src/flash/flash.h | 33 | ||||
-rw-r--r-- | src/flash/nor/at91sam7.h | 2 | ||||
-rw-r--r-- | src/flash/nor/avrf.h | 2 | ||||
-rw-r--r-- | src/flash/nor/cfi.h | 2 | ||||
-rw-r--r-- | src/flash/nor/lpc2000.h | 2 | ||||
-rw-r--r-- | src/flash/nor/lpc288x.h | 2 | ||||
-rw-r--r-- | src/flash/nor/non_cfi.c | 3 | ||||
-rw-r--r-- | src/flash/nor/non_cfi.h | 2 | ||||
-rw-r--r-- | src/flash/nor/pic32mx.h | 2 | ||||
-rw-r--r-- | src/flash/nor/stellaris.h | 2 | ||||
-rw-r--r-- | src/flash/nor/stm32x.h | 2 | ||||
-rw-r--r-- | src/flash/nor/str7x.h | 2 | ||||
-rw-r--r-- | src/flash/nor/str9x.h | 2 | ||||
-rw-r--r-- | src/flash/nor/str9xpec.h | 2 | ||||
-rw-r--r-- | src/flash/nor/tms470.h | 2 | ||||
-rw-r--r-- | src/openocd.c | 2 | ||||
-rw-r--r-- | src/server/gdb_server.c | 2 |
18 files changed, 4 insertions, 63 deletions
diff --git a/src/flash/Makefile.am b/src/flash/Makefile.am index b5cd526..ba44adb 100644 --- a/src/flash/Makefile.am +++ b/src/flash/Makefile.am @@ -22,7 +22,6 @@ libflash_la_LIBADD = \ noinst_HEADERS = \ arm_nandio.h \ common.h \ - flash.h \ mflash.h \ nand.h diff --git a/src/flash/flash.h b/src/flash/flash.h deleted file mode 100644 index 056e1ae..0000000 --- a/src/flash/flash.h +++ /dev/null @@ -1,33 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2005 by Dominic Rath * - * Dominic.Rath@gmx.de * - * * - * Copyright (C) 2007,2008 Øyvind Harboe * - * oyvind.harboe@zylin.com * - * * - * Copyright (C) 2008 by Spencer Oliver * - * spen@spen-soft.co.uk * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - ***************************************************************************/ -#ifndef FLASH_H -#define FLASH_H - -// this file will be removed - -#include <flash/nor/core.h> - -#endif /* FLASH_H */ diff --git a/src/flash/nor/at91sam7.h b/src/flash/nor/at91sam7.h index 8077879..eb35433 100644 --- a/src/flash/nor/at91sam7.h +++ b/src/flash/nor/at91sam7.h @@ -23,8 +23,6 @@ #ifndef AT91SAM7_H #define AT91SAM7_H -#include <flash/flash.h> - struct at91sam7_flash_bank { /* chip id register */ diff --git a/src/flash/nor/avrf.h b/src/flash/nor/avrf.h index 0f270e6..1a69e86 100644 --- a/src/flash/nor/avrf.h +++ b/src/flash/nor/avrf.h @@ -20,8 +20,6 @@ #ifndef AVRF_H #define AVRF_H -#include <helper/types.h> - struct avrf_type { char name[15]; diff --git a/src/flash/nor/cfi.h b/src/flash/nor/cfi.h index 565a2b6..fa717dc 100644 --- a/src/flash/nor/cfi.h +++ b/src/flash/nor/cfi.h @@ -20,8 +20,6 @@ #ifndef CFI_H #define CFI_H -#include <flash/flash.h> - #define CFI_STATUS_POLL_MASK_DQ5_DQ6_DQ7 0xE0 /* DQ5..DQ7 */ #define CFI_STATUS_POLL_MASK_DQ6_DQ7 0xC0 /* DQ6..DQ7 */ diff --git a/src/flash/nor/lpc2000.h b/src/flash/nor/lpc2000.h index 30be304..f1f90e7 100644 --- a/src/flash/nor/lpc2000.h +++ b/src/flash/nor/lpc2000.h @@ -23,8 +23,6 @@ #ifndef LPC2000_H #define LPC2000_H -#include <flash/flash.h> - typedef enum { lpc2000_v1, diff --git a/src/flash/nor/lpc288x.h b/src/flash/nor/lpc288x.h index 06f634a..cd5fb73 100644 --- a/src/flash/nor/lpc288x.h +++ b/src/flash/nor/lpc288x.h @@ -21,8 +21,6 @@ #ifndef lpc288x_H #define lpc288x_H -#include <flash/flash.h> - struct lpc288x_flash_bank { uint32_t working_area; diff --git a/src/flash/nor/non_cfi.c b/src/flash/nor/non_cfi.c index f98b108..7e73afa 100644 --- a/src/flash/nor/non_cfi.c +++ b/src/flash/nor/non_cfi.c @@ -23,8 +23,9 @@ #include "config.h" #endif -#include "non_cfi.h" +#include "imp.h" #include "cfi.h" +#include "non_cfi.h" #define KB 1024 diff --git a/src/flash/nor/non_cfi.h b/src/flash/nor/non_cfi.h index cc6004e..0219333 100644 --- a/src/flash/nor/non_cfi.h +++ b/src/flash/nor/non_cfi.h @@ -20,8 +20,6 @@ #ifndef NON_CFI_H #define NON_CFI_H -#include <flash/flash.h> - struct non_cfi { uint16_t mfr; diff --git a/src/flash/nor/pic32mx.h b/src/flash/nor/pic32mx.h index b33e831..b3bdad2 100644 --- a/src/flash/nor/pic32mx.h +++ b/src/flash/nor/pic32mx.h @@ -26,8 +26,6 @@ #ifndef PIC32MX_H #define PIC32MX_H -#include <flash/flash.h> - struct pic32mx_flash_bank { struct working_area *write_algorithm; diff --git a/src/flash/nor/stellaris.h b/src/flash/nor/stellaris.h index 85b709c..a5f04e4 100644 --- a/src/flash/nor/stellaris.h +++ b/src/flash/nor/stellaris.h @@ -20,8 +20,6 @@ #ifndef STELLARIS_FLASH_H #define STELLARIS_FLASH_H -#include <flash/flash.h> - struct stellaris_flash_bank { /* chip id register */ diff --git a/src/flash/nor/stm32x.h b/src/flash/nor/stm32x.h index b6e00ed..fcf895c 100644 --- a/src/flash/nor/stm32x.h +++ b/src/flash/nor/stm32x.h @@ -23,8 +23,6 @@ #ifndef STM32X_H #define STM32X_H -#include <flash/flash.h> - struct stm32x_options { uint16_t RDP; diff --git a/src/flash/nor/str7x.h b/src/flash/nor/str7x.h index 4daafb7..77dfee6 100644 --- a/src/flash/nor/str7x.h +++ b/src/flash/nor/str7x.h @@ -23,8 +23,6 @@ #ifndef STR7X_H #define STR7X_H -#include <flash/flash.h> - struct str7x_flash_bank { uint32_t *sector_bits; diff --git a/src/flash/nor/str9x.h b/src/flash/nor/str9x.h index 29adecf..ba5386f 100644 --- a/src/flash/nor/str9x.h +++ b/src/flash/nor/str9x.h @@ -23,8 +23,6 @@ #ifndef STR9X_H #define STR9X_H -#include <flash/flash.h> - struct str9x_flash_bank { uint32_t *sector_bits; diff --git a/src/flash/nor/str9xpec.h b/src/flash/nor/str9xpec.h index cb2ac78..6eecd8a 100644 --- a/src/flash/nor/str9xpec.h +++ b/src/flash/nor/str9xpec.h @@ -23,8 +23,6 @@ #ifndef STR9XPEC_H #define STR9XPEC_H -#include <flash/flash.h> -#include <jtag/jtag.h> struct str9xpec_flash_controller { diff --git a/src/flash/nor/tms470.h b/src/flash/nor/tms470.h index b2fea1b..ecbfad8 100644 --- a/src/flash/nor/tms470.h +++ b/src/flash/nor/tms470.h @@ -20,8 +20,6 @@ #ifndef TMS470_DOT_H #define TMS470_DOT_H -#include <flash/flash.h> - struct tms470_flash_bank { unsigned ordinal; diff --git a/src/openocd.c b/src/openocd.c index b6dc010..e500ba6 100644 --- a/src/openocd.c +++ b/src/openocd.c @@ -34,7 +34,7 @@ #include <helper/configuration.h> #include <xsvf/xsvf.h> #include <svf/svf.h> -#include <flash/flash.h> +#include <flash/nor/core.h> #include <flash/nand.h> #include <pld/pld.h> #include <flash/mflash.h> diff --git a/src/server/gdb_server.c b/src/server/gdb_server.c index 21cd0fe..f9cca99 100644 --- a/src/server/gdb_server.c +++ b/src/server/gdb_server.c @@ -31,7 +31,7 @@ #include <target/target_request.h> #include <target/register.h> #include "server.h" -#include <flash/flash.h> +#include <flash/nor/core.h> #include "gdb_server.h" #include <target/image.h> #include <jtag/jtag.h> |