|
From: <zw...@ma...> - 2009-06-03 03:26:21
|
Author: zwelch Date: 2009-06-03 03:26:01 +0200 (Wed, 03 Jun 2009) New Revision: 2016 Modified: trunk/src/jtag/amt_jtagaccel.c trunk/src/jtag/arm-jtag-ew.c trunk/src/jtag/at91rm9200.c trunk/src/jtag/bitbang.c trunk/src/jtag/bitq.c trunk/src/jtag/dummy.c trunk/src/jtag/ep93xx.c trunk/src/jtag/ft2232.c trunk/src/jtag/gw16012.c trunk/src/jtag/jlink.c trunk/src/jtag/jtag.c trunk/src/jtag/jtag.h trunk/src/jtag/jtag_driver.c trunk/src/jtag/parport.c trunk/src/jtag/presto.c trunk/src/jtag/rlink/rlink.c trunk/src/jtag/usbprog.c trunk/src/jtag/vsllink.c trunk/src/jtag/zy1000.c trunk/src/xsvf/xsvf.c Log: Remove interface.h from public JTAG header, include it where required. Modified: trunk/src/jtag/amt_jtagaccel.c =================================================================== --- trunk/src/jtag/amt_jtagaccel.c 2009-06-03 01:23:48 UTC (rev 2015) +++ trunk/src/jtag/amt_jtagaccel.c 2009-06-03 01:26:01 UTC (rev 2016) @@ -22,7 +22,7 @@ #endif #define INCLUDE_JTAG_INTERFACE_H -#include "jtag.h" +#include "interface.h" #if PARPORT_USE_PPDEV == 1 Modified: trunk/src/jtag/arm-jtag-ew.c =================================================================== --- trunk/src/jtag/arm-jtag-ew.c 2009-06-03 01:23:48 UTC (rev 2015) +++ trunk/src/jtag/arm-jtag-ew.c 2009-06-03 01:26:01 UTC (rev 2016) @@ -25,7 +25,7 @@ #endif #define INCLUDE_JTAG_INTERFACE_H -#include "jtag.h" +#include "interface.h" #include <usb.h> Modified: trunk/src/jtag/at91rm9200.c =================================================================== --- trunk/src/jtag/at91rm9200.c 2009-06-03 01:23:48 UTC (rev 2015) +++ trunk/src/jtag/at91rm9200.c 2009-06-03 01:26:01 UTC (rev 2016) @@ -22,7 +22,7 @@ #endif #define INCLUDE_JTAG_INTERFACE_H -#include "jtag.h" +#include "interface.h" #include "bitbang.h" #include <sys/mman.h> Modified: trunk/src/jtag/bitbang.c =================================================================== --- trunk/src/jtag/bitbang.c 2009-06-03 01:23:48 UTC (rev 2015) +++ trunk/src/jtag/bitbang.c 2009-06-03 01:26:01 UTC (rev 2016) @@ -27,6 +27,7 @@ #include "bitbang.h" #define INCLUDE_JTAG_INTERFACE_H #include "jtag.h" +#include "interface.h" /** * Function bitbang_stableclocks Modified: trunk/src/jtag/bitq.c =================================================================== --- trunk/src/jtag/bitq.c 2009-06-03 01:23:48 UTC (rev 2015) +++ trunk/src/jtag/bitq.c 2009-06-03 01:26:01 UTC (rev 2016) @@ -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 */ Modified: trunk/src/jtag/dummy.c =================================================================== --- trunk/src/jtag/dummy.c 2009-06-03 01:23:48 UTC (rev 2015) +++ trunk/src/jtag/dummy.c 2009-06-03 01:26:01 UTC (rev 2016) @@ -22,7 +22,7 @@ #endif #define INCLUDE_JTAG_INTERFACE_H -#include "jtag.h" +#include "interface.h" #include "bitbang.h" Modified: trunk/src/jtag/ep93xx.c =================================================================== --- trunk/src/jtag/ep93xx.c 2009-06-03 01:23:48 UTC (rev 2015) +++ trunk/src/jtag/ep93xx.c 2009-06-03 01:26:01 UTC (rev 2016) @@ -22,7 +22,7 @@ #endif #define INCLUDE_JTAG_INTERFACE_H -#include "jtag.h" +#include "interface.h" #include "bitbang.h" #define TDO_BIT 1 Modified: trunk/src/jtag/ft2232.c =================================================================== --- trunk/src/jtag/ft2232.c 2009-06-03 01:23:48 UTC (rev 2015) +++ trunk/src/jtag/ft2232.c 2009-06-03 01:26:01 UTC (rev 2016) @@ -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 Modified: trunk/src/jtag/gw16012.c =================================================================== --- trunk/src/jtag/gw16012.c 2009-06-03 01:23:48 UTC (rev 2015) +++ trunk/src/jtag/gw16012.c 2009-06-03 01:26:01 UTC (rev 2016) @@ -22,7 +22,7 @@ #endif #define INCLUDE_JTAG_INTERFACE_H -#include "jtag.h" +#include "interface.h" #if 1 Modified: trunk/src/jtag/jlink.c =================================================================== --- trunk/src/jtag/jlink.c 2009-06-03 01:23:48 UTC (rev 2015) +++ trunk/src/jtag/jlink.c 2009-06-03 01:26:01 UTC (rev 2016) @@ -26,7 +26,7 @@ #endif #define INCLUDE_JTAG_INTERFACE_H -#include "jtag.h" +#include "interface.h" #include <usb.h> Modified: trunk/src/jtag/jtag.c =================================================================== --- trunk/src/jtag/jtag.c 2009-06-03 01:23:48 UTC (rev 2015) +++ trunk/src/jtag/jtag.c 2009-06-03 01:26:01 UTC (rev 2016) @@ -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> Modified: trunk/src/jtag/jtag.h =================================================================== --- trunk/src/jtag/jtag.h 2009-06-03 01:23:48 UTC (rev 2015) +++ trunk/src/jtag/jtag.h 2009-06-03 01:26:01 UTC (rev 2016) @@ -224,8 +224,6 @@ 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 */ Modified: trunk/src/jtag/jtag_driver.c =================================================================== --- trunk/src/jtag/jtag_driver.c 2009-06-03 01:23:48 UTC (rev 2015) +++ trunk/src/jtag/jtag_driver.c 2009-06-03 01:26:01 UTC (rev 2016) @@ -32,7 +32,7 @@ #endif #define INCLUDE_JTAG_INTERFACE_H -#include "jtag.h" +#include "interface.h" #include "minidriver.h" #include "command.h" Modified: trunk/src/jtag/parport.c =================================================================== --- trunk/src/jtag/parport.c 2009-06-03 01:23:48 UTC (rev 2015) +++ trunk/src/jtag/parport.c 2009-06-03 01:26:01 UTC (rev 2016) @@ -25,7 +25,7 @@ #endif #define INCLUDE_JTAG_INTERFACE_H -#include "jtag.h" +#include "interface.h" #include "bitbang.h" /* -ino: 060521-1036 */ Modified: trunk/src/jtag/presto.c =================================================================== --- trunk/src/jtag/presto.c 2009-06-03 01:23:48 UTC (rev 2015) +++ trunk/src/jtag/presto.c 2009-06-03 01:26:01 UTC (rev 2016) @@ -26,7 +26,7 @@ #endif #define INCLUDE_JTAG_INTERFACE_H -#include "jtag.h" +#include "interface.h" #include "time_support.h" #include "bitq.h" Modified: trunk/src/jtag/rlink/rlink.c =================================================================== --- trunk/src/jtag/rlink/rlink.c 2009-06-03 01:23:48 UTC (rev 2015) +++ trunk/src/jtag/rlink/rlink.c 2009-06-03 01:26:01 UTC (rev 2016) @@ -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" Modified: trunk/src/jtag/usbprog.c =================================================================== --- trunk/src/jtag/usbprog.c 2009-06-03 01:23:48 UTC (rev 2015) +++ trunk/src/jtag/usbprog.c 2009-06-03 01:26:01 UTC (rev 2016) @@ -35,7 +35,7 @@ #endif #define INCLUDE_JTAG_INTERFACE_H -#include "jtag.h" +#include "interface.h" #include <usb.h> Modified: trunk/src/jtag/vsllink.c =================================================================== --- trunk/src/jtag/vsllink.c 2009-06-03 01:23:48 UTC (rev 2015) +++ trunk/src/jtag/vsllink.c 2009-06-03 01:26:01 UTC (rev 2016) @@ -27,7 +27,7 @@ #endif #define INCLUDE_JTAG_INTERFACE_H -#include "jtag.h" +#include "interface.h" #include <usb.h> Modified: trunk/src/jtag/zy1000.c =================================================================== --- trunk/src/jtag/zy1000.c 2009-06-03 01:23:48 UTC (rev 2015) +++ trunk/src/jtag/zy1000.c 2009-06-03 01:26:01 UTC (rev 2016) @@ -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 Modified: trunk/src/xsvf/xsvf.c =================================================================== --- trunk/src/xsvf/xsvf.c 2009-06-03 01:23:48 UTC (rev 2015) +++ trunk/src/xsvf/xsvf.c 2009-06-03 01:26:01 UTC (rev 2016) @@ -41,7 +41,6 @@ #include "config.h" #endif -#define INCLUDE_JTAG_INTERFACE_H #include "xsvf.h" #include "jtag.h" |