Browse Source

Remove interface.h from public JTAG header, include it where required.

git-svn-id: svn://svn.berlios.de/openocd/trunk@2016 b42882b7-edfa-0310-969c-e2dbd0fdcd60
tags/v0.2.0
zwelch 15 years ago
parent
commit
67caf323f7
20 changed files with 18 additions and 17 deletions
  1. +1
    -1
      src/jtag/amt_jtagaccel.c
  2. +1
    -1
      src/jtag/arm-jtag-ew.c
  3. +1
    -1
      src/jtag/at91rm9200.c
  4. +1
    -0
      src/jtag/bitbang.c
  5. +1
    -0
      src/jtag/bitq.c
  6. +1
    -1
      src/jtag/dummy.c
  7. +1
    -1
      src/jtag/ep93xx.c
  8. +1
    -1
      src/jtag/ft2232.c
  9. +1
    -1
      src/jtag/gw16012.c
  10. +1
    -1
      src/jtag/jlink.c
  11. +1
    -0
      src/jtag/jtag.c
  12. +0
    -2
      src/jtag/jtag.h
  13. +1
    -1
      src/jtag/jtag_driver.c
  14. +1
    -1
      src/jtag/parport.c
  15. +1
    -1
      src/jtag/presto.c
  16. +1
    -1
      src/jtag/rlink/rlink.c
  17. +1
    -1
      src/jtag/usbprog.c
  18. +1
    -1
      src/jtag/vsllink.c
  19. +1
    -0
      src/jtag/zy1000.c
  20. +0
    -1
      src/xsvf/xsvf.c

+ 1
- 1
src/jtag/amt_jtagaccel.c View File

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

#define INCLUDE_JTAG_INTERFACE_H
#include "jtag.h"
#include "interface.h"


#if PARPORT_USE_PPDEV == 1


+ 1
- 1
src/jtag/arm-jtag-ew.c View File

@@ -25,7 +25,7 @@
#endif

#define INCLUDE_JTAG_INTERFACE_H
#include "jtag.h"
#include "interface.h"
#include <usb.h>




+ 1
- 1
src/jtag/at91rm9200.c View File

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

#define INCLUDE_JTAG_INTERFACE_H
#include "jtag.h"
#include "interface.h"
#include "bitbang.h"

#include <sys/mman.h>


+ 1
- 0
src/jtag/bitbang.c View File

@@ -27,6 +27,7 @@
#include "bitbang.h"
#define INCLUDE_JTAG_INTERFACE_H
#include "jtag.h"
#include "interface.h"

/**
* Function bitbang_stableclocks


+ 1
- 0
src/jtag/bitq.c View File

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

#define INCLUDE_JTAG_INTERFACE_H
#include "bitq.h"
#include "interface.h"


bitq_interface_t* bitq_interface; /* low level bit queue interface */


+ 1
- 1
src/jtag/dummy.c View File

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

#define INCLUDE_JTAG_INTERFACE_H
#include "jtag.h"
#include "interface.h"
#include "bitbang.h"




+ 1
- 1
src/jtag/ep93xx.c View File

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

#define INCLUDE_JTAG_INTERFACE_H
#include "jtag.h"
#include "interface.h"
#include "bitbang.h"

#define TDO_BIT 1


+ 1
- 1
src/jtag/ft2232.c View File

@@ -41,7 +41,7 @@

/* project specific includes */
#define INCLUDE_JTAG_INTERFACE_H
#include "jtag.h"
#include "interface.h"
#include "time_support.h"

#if IS_CYGWIN == 1


+ 1
- 1
src/jtag/gw16012.c View File

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

#define INCLUDE_JTAG_INTERFACE_H
#include "jtag.h"
#include "interface.h"


#if 1


+ 1
- 1
src/jtag/jlink.c View File

@@ -26,7 +26,7 @@
#endif

#define INCLUDE_JTAG_INTERFACE_H
#include "jtag.h"
#include "interface.h"

#include <usb.h>



+ 1
- 0
src/jtag/jtag.c View File

@@ -31,6 +31,7 @@
#define INCLUDE_JTAG_INTERFACE_H
#include "jtag.h"
#include "minidriver.h"
#include "interface.h"

#ifdef HAVE_STRINGS_H
#include <strings.h>


+ 0
- 2
src/jtag/jtag.h View File

@@ -224,8 +224,6 @@ extern void cmd_queue_free(void);
extern void jtag_queue_command(jtag_command_t *cmd);
extern void jtag_command_queue_reset(void);

#include "interface.h"

#endif // INCLUDE_JTAG_INTERFACE_H

/* forward declaration */


+ 1
- 1
src/jtag/jtag_driver.c View File

@@ -32,7 +32,7 @@
#endif

#define INCLUDE_JTAG_INTERFACE_H
#include "jtag.h"
#include "interface.h"
#include "minidriver.h"
#include "command.h"



+ 1
- 1
src/jtag/parport.c View File

@@ -25,7 +25,7 @@
#endif

#define INCLUDE_JTAG_INTERFACE_H
#include "jtag.h"
#include "interface.h"
#include "bitbang.h"

/* -ino: 060521-1036 */


+ 1
- 1
src/jtag/presto.c View File

@@ -26,7 +26,7 @@
#endif

#define INCLUDE_JTAG_INTERFACE_H
#include "jtag.h"
#include "interface.h"
#include "time_support.h"
#include "bitq.h"



+ 1
- 1
src/jtag/rlink/rlink.c View File

@@ -29,7 +29,7 @@

/* project specific includes */
#define INCLUDE_JTAG_INTERFACE_H
#include "jtag.h"
#include "interface.h"
#include "rlink.h"
#include "st7.h"
#include "ep1_cmd.h"


+ 1
- 1
src/jtag/usbprog.c View File

@@ -35,7 +35,7 @@
#endif

#define INCLUDE_JTAG_INTERFACE_H
#include "jtag.h"
#include "interface.h"

#include <usb.h>



+ 1
- 1
src/jtag/vsllink.c View File

@@ -27,7 +27,7 @@
#endif

#define INCLUDE_JTAG_INTERFACE_H
#include "jtag.h"
#include "interface.h"

#include <usb.h>



+ 1
- 0
src/jtag/zy1000.c View File

@@ -23,6 +23,7 @@
#define INCLUDE_JTAG_INTERFACE_H
#include "embeddedice.h"
#include "minidriver.h"
#include "interface.h"
#include "bitbang.h"

#include <cyg/hal/hal_io.h> // low level i/o


+ 0
- 1
src/xsvf/xsvf.c View File

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

#define INCLUDE_JTAG_INTERFACE_H
#include "xsvf.h"
#include "jtag.h"



Loading…
Cancel
Save