From 2b2d5ec1e38efdd10ec64f8e880588350fb4edea Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Thu, 3 Dec 2009 04:14:54 -0800 Subject: change #include "flash.h" to Changes from the flat namespace to heirarchical one. Instead of writing: #include "flash.h" the following form should be used. #include The exception is from .c files in the same directory. --- src/flash/nor/aduc702x.c | 2 +- src/flash/nor/at91sam3.c | 2 +- src/flash/nor/at91sam7.h | 2 +- src/flash/nor/avrf.c | 2 +- src/flash/nor/cfi.h | 2 +- src/flash/nor/ecos.c | 2 +- src/flash/nor/faux.c | 2 +- src/flash/nor/lpc2000.h | 2 +- src/flash/nor/lpc288x.h | 2 +- src/flash/nor/lpc2900.c | 2 +- src/flash/nor/non_cfi.h | 2 +- src/flash/nor/ocl.c | 2 +- src/flash/nor/pic32mx.h | 2 +- src/flash/nor/stellaris.h | 2 +- src/flash/nor/stm32x.h | 2 +- src/flash/nor/str7x.h | 2 +- src/flash/nor/str9x.h | 2 +- src/flash/nor/str9xpec.h | 2 +- src/flash/nor/tms470.h | 2 +- 19 files changed, 19 insertions(+), 19 deletions(-) (limited to 'src/flash/nor') diff --git a/src/flash/nor/aduc702x.c b/src/flash/nor/aduc702x.c index a8d76ce..6696912 100644 --- a/src/flash/nor/aduc702x.c +++ b/src/flash/nor/aduc702x.c @@ -23,7 +23,7 @@ #include "config.h" #endif -#include "flash.h" +#include #include #include #include diff --git a/src/flash/nor/at91sam3.c b/src/flash/nor/at91sam3.c index 5f7e8d7..dd4f347 100644 --- a/src/flash/nor/at91sam3.c +++ b/src/flash/nor/at91sam3.c @@ -61,7 +61,7 @@ #include #include #include -#include "flash.h" +#include #include #include "at91sam3.h" #include diff --git a/src/flash/nor/at91sam7.h b/src/flash/nor/at91sam7.h index 4510686..8077879 100644 --- a/src/flash/nor/at91sam7.h +++ b/src/flash/nor/at91sam7.h @@ -23,7 +23,7 @@ #ifndef AT91SAM7_H #define AT91SAM7_H -#include "flash.h" +#include struct at91sam7_flash_bank { diff --git a/src/flash/nor/avrf.c b/src/flash/nor/avrf.c index 2bc4438..fbc9277 100644 --- a/src/flash/nor/avrf.c +++ b/src/flash/nor/avrf.c @@ -23,7 +23,7 @@ #include "avrf.h" #include -#include "flash.h" +#include /* AVR_JTAG_Instructions */ diff --git a/src/flash/nor/cfi.h b/src/flash/nor/cfi.h index d55fd34..565a2b6 100644 --- a/src/flash/nor/cfi.h +++ b/src/flash/nor/cfi.h @@ -20,7 +20,7 @@ #ifndef CFI_H #define CFI_H -#include "flash.h" +#include #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/ecos.c b/src/flash/nor/ecos.c index 81223b6..8f8f746 100644 --- a/src/flash/nor/ecos.c +++ b/src/flash/nor/ecos.c @@ -21,7 +21,7 @@ #include "config.h" #endif -#include "flash.h" +#include #include #include #include diff --git a/src/flash/nor/faux.c b/src/flash/nor/faux.c index 124ca3e..49a0f72 100644 --- a/src/flash/nor/faux.c +++ b/src/flash/nor/faux.c @@ -21,7 +21,7 @@ #include "config.h" #endif -#include "flash.h" +#include #include #include "../hello.h" diff --git a/src/flash/nor/lpc2000.h b/src/flash/nor/lpc2000.h index 08e278a..30be304 100644 --- a/src/flash/nor/lpc2000.h +++ b/src/flash/nor/lpc2000.h @@ -23,7 +23,7 @@ #ifndef LPC2000_H #define LPC2000_H -#include "flash.h" +#include typedef enum { diff --git a/src/flash/nor/lpc288x.h b/src/flash/nor/lpc288x.h index 5a71ee0..06f634a 100644 --- a/src/flash/nor/lpc288x.h +++ b/src/flash/nor/lpc288x.h @@ -21,7 +21,7 @@ #ifndef lpc288x_H #define lpc288x_H -#include "flash.h" +#include struct lpc288x_flash_bank { diff --git a/src/flash/nor/lpc2900.c b/src/flash/nor/lpc2900.c index c1fefd7..dc466f8 100644 --- a/src/flash/nor/lpc2900.c +++ b/src/flash/nor/lpc2900.c @@ -24,7 +24,7 @@ #include -#include "flash.h" +#include #include #include #include diff --git a/src/flash/nor/non_cfi.h b/src/flash/nor/non_cfi.h index 44c92db..cc6004e 100644 --- a/src/flash/nor/non_cfi.h +++ b/src/flash/nor/non_cfi.h @@ -20,7 +20,7 @@ #ifndef NON_CFI_H #define NON_CFI_H -#include "flash.h" +#include struct non_cfi { diff --git a/src/flash/nor/ocl.c b/src/flash/nor/ocl.c index 57d9efa..6e3ad1c 100644 --- a/src/flash/nor/ocl.c +++ b/src/flash/nor/ocl.c @@ -22,7 +22,7 @@ #endif #include "ocl.h" -#include "flash.h" +#include #include diff --git a/src/flash/nor/pic32mx.h b/src/flash/nor/pic32mx.h index 92f40c2..b33e831 100644 --- a/src/flash/nor/pic32mx.h +++ b/src/flash/nor/pic32mx.h @@ -26,7 +26,7 @@ #ifndef PIC32MX_H #define PIC32MX_H -#include "flash.h" +#include struct pic32mx_flash_bank { diff --git a/src/flash/nor/stellaris.h b/src/flash/nor/stellaris.h index 949a346..85b709c 100644 --- a/src/flash/nor/stellaris.h +++ b/src/flash/nor/stellaris.h @@ -20,7 +20,7 @@ #ifndef STELLARIS_FLASH_H #define STELLARIS_FLASH_H -#include "flash.h" +#include struct stellaris_flash_bank { diff --git a/src/flash/nor/stm32x.h b/src/flash/nor/stm32x.h index 6cd047e..b6e00ed 100644 --- a/src/flash/nor/stm32x.h +++ b/src/flash/nor/stm32x.h @@ -23,7 +23,7 @@ #ifndef STM32X_H #define STM32X_H -#include "flash.h" +#include struct stm32x_options { diff --git a/src/flash/nor/str7x.h b/src/flash/nor/str7x.h index 81af0f1..4daafb7 100644 --- a/src/flash/nor/str7x.h +++ b/src/flash/nor/str7x.h @@ -23,7 +23,7 @@ #ifndef STR7X_H #define STR7X_H -#include "flash.h" +#include struct str7x_flash_bank { diff --git a/src/flash/nor/str9x.h b/src/flash/nor/str9x.h index c9d5152..29adecf 100644 --- a/src/flash/nor/str9x.h +++ b/src/flash/nor/str9x.h @@ -23,7 +23,7 @@ #ifndef STR9X_H #define STR9X_H -#include "flash.h" +#include struct str9x_flash_bank { diff --git a/src/flash/nor/str9xpec.h b/src/flash/nor/str9xpec.h index 1d5ce94..cb2ac78 100644 --- a/src/flash/nor/str9xpec.h +++ b/src/flash/nor/str9xpec.h @@ -23,7 +23,7 @@ #ifndef STR9XPEC_H #define STR9XPEC_H -#include "flash.h" +#include #include struct str9xpec_flash_controller diff --git a/src/flash/nor/tms470.h b/src/flash/nor/tms470.h index f275e51..b2fea1b 100644 --- a/src/flash/nor/tms470.h +++ b/src/flash/nor/tms470.h @@ -20,7 +20,7 @@ #ifndef TMS470_DOT_H #define TMS470_DOT_H -#include "flash.h" +#include struct tms470_flash_bank { -- cgit v1.1