Browse Source

change #include "flash.h" to <flash/flash.h>

Changes from the flat namespace to heirarchical one.  Instead of writing:

	#include "flash.h"

the following form should be used.

	#include <flash/flash.h>

The exception is from .c files in the same directory.
tags/v0.4.0-rc1
Zachary T Welch 14 years ago
parent
commit
2b2d5ec1e3
21 changed files with 21 additions and 21 deletions
  1. +1
    -1
      src/flash/nand.h
  2. +1
    -1
      src/flash/nor/aduc702x.c
  3. +1
    -1
      src/flash/nor/at91sam3.c
  4. +1
    -1
      src/flash/nor/at91sam7.h
  5. +1
    -1
      src/flash/nor/avrf.c
  6. +1
    -1
      src/flash/nor/cfi.h
  7. +1
    -1
      src/flash/nor/ecos.c
  8. +1
    -1
      src/flash/nor/faux.c
  9. +1
    -1
      src/flash/nor/lpc2000.h
  10. +1
    -1
      src/flash/nor/lpc288x.h
  11. +1
    -1
      src/flash/nor/lpc2900.c
  12. +1
    -1
      src/flash/nor/non_cfi.h
  13. +1
    -1
      src/flash/nor/ocl.c
  14. +1
    -1
      src/flash/nor/pic32mx.h
  15. +1
    -1
      src/flash/nor/stellaris.h
  16. +1
    -1
      src/flash/nor/stm32x.h
  17. +1
    -1
      src/flash/nor/str7x.h
  18. +1
    -1
      src/flash/nor/str9x.h
  19. +1
    -1
      src/flash/nor/str9xpec.h
  20. +1
    -1
      src/flash/nor/tms470.h
  21. +1
    -1
      src/server/gdb_server.c

+ 1
- 1
src/flash/nand.h View File

@@ -25,7 +25,7 @@
#ifndef NAND_H
#define NAND_H

#include "flash.h"
#include <flash/flash.h>

struct nand_device;



+ 1
- 1
src/flash/nor/aduc702x.c View File

@@ -23,7 +23,7 @@
#include "config.h"
#endif

#include "flash.h"
#include <flash/flash.h>
#include <target/armv4_5.h>
#include <helper/binarybuffer.h>
#include <helper/time_support.h>


+ 1
- 1
src/flash/nor/at91sam3.c View File

@@ -61,7 +61,7 @@
#include <string.h>
#include <stddef.h>
#include <helper/types.h>
#include "flash.h"
#include <flash/flash.h>
#include <helper/membuf.h>
#include "at91sam3.h"
#include <helper/time_support.h>


+ 1
- 1
src/flash/nor/at91sam7.h View File

@@ -23,7 +23,7 @@
#ifndef AT91SAM7_H
#define AT91SAM7_H

#include "flash.h"
#include <flash/flash.h>

struct at91sam7_flash_bank
{


+ 1
- 1
src/flash/nor/avrf.c View File

@@ -23,7 +23,7 @@

#include "avrf.h"
#include <target/avrt.h>
#include "flash.h"
#include <flash/flash.h>


/* AVR_JTAG_Instructions */


+ 1
- 1
src/flash/nor/cfi.h View File

@@ -20,7 +20,7 @@
#ifndef CFI_H
#define CFI_H

#include "flash.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 */


+ 1
- 1
src/flash/nor/ecos.c View File

@@ -21,7 +21,7 @@
#include "config.h"
#endif

#include "flash.h"
#include <flash/flash.h>
#include <target/embeddedice.h>
#include <target/image.h>
#include <target/algorithm.h>


+ 1
- 1
src/flash/nor/faux.c View File

@@ -21,7 +21,7 @@
#include "config.h"
#endif

#include "flash.h"
#include <flash/flash.h>
#include <target/image.h>
#include "../hello.h"



+ 1
- 1
src/flash/nor/lpc2000.h View File

@@ -23,7 +23,7 @@
#ifndef LPC2000_H
#define LPC2000_H

#include "flash.h"
#include <flash/flash.h>

typedef enum
{


+ 1
- 1
src/flash/nor/lpc288x.h View File

@@ -21,7 +21,7 @@
#ifndef lpc288x_H
#define lpc288x_H

#include "flash.h"
#include <flash/flash.h>

struct lpc288x_flash_bank
{


+ 1
- 1
src/flash/nor/lpc2900.c View File

@@ -24,7 +24,7 @@


#include <target/image.h>
#include "flash.h"
#include <flash/flash.h>
#include <helper/binarybuffer.h>
#include <target/armv4_5.h>
#include <target/algorithm.h>


+ 1
- 1
src/flash/nor/non_cfi.h View File

@@ -20,7 +20,7 @@
#ifndef NON_CFI_H
#define NON_CFI_H

#include "flash.h"
#include <flash/flash.h>

struct non_cfi
{


+ 1
- 1
src/flash/nor/ocl.c View File

@@ -22,7 +22,7 @@
#endif

#include "ocl.h"
#include "flash.h"
#include <flash/flash.h>
#include <target/embeddedice.h>




+ 1
- 1
src/flash/nor/pic32mx.h View File

@@ -26,7 +26,7 @@
#ifndef PIC32MX_H
#define PIC32MX_H

#include "flash.h"
#include <flash/flash.h>

struct pic32mx_flash_bank
{


+ 1
- 1
src/flash/nor/stellaris.h View File

@@ -20,7 +20,7 @@
#ifndef STELLARIS_FLASH_H
#define STELLARIS_FLASH_H

#include "flash.h"
#include <flash/flash.h>

struct stellaris_flash_bank
{


+ 1
- 1
src/flash/nor/stm32x.h View File

@@ -23,7 +23,7 @@
#ifndef STM32X_H
#define STM32X_H

#include "flash.h"
#include <flash/flash.h>

struct stm32x_options
{


+ 1
- 1
src/flash/nor/str7x.h View File

@@ -23,7 +23,7 @@
#ifndef STR7X_H
#define STR7X_H

#include "flash.h"
#include <flash/flash.h>

struct str7x_flash_bank
{


+ 1
- 1
src/flash/nor/str9x.h View File

@@ -23,7 +23,7 @@
#ifndef STR9X_H
#define STR9X_H

#include "flash.h"
#include <flash/flash.h>

struct str9x_flash_bank
{


+ 1
- 1
src/flash/nor/str9xpec.h View File

@@ -23,7 +23,7 @@
#ifndef STR9XPEC_H
#define STR9XPEC_H

#include "flash.h"
#include <flash/flash.h>
#include <jtag/jtag.h>

struct str9xpec_flash_controller


+ 1
- 1
src/flash/nor/tms470.h View File

@@ -20,7 +20,7 @@
#ifndef TMS470_DOT_H
#define TMS470_DOT_H

#include "flash.h"
#include <flash/flash.h>

struct tms470_flash_bank
{


+ 1
- 1
src/server/gdb_server.c View File

@@ -31,7 +31,7 @@
#include <target/target_request.h>
#include <target/register.h>
#include "server.h"
#include "flash.h"
#include <flash/flash.h>
#include "gdb_server.h"
#include <target/image.h>
#include <jtag/jtag.h>


Loading…
Cancel
Save