build: add helper/types.h to config.h

this header is used in numerous files and adding to config.h
simplifies its use globally.

Change-Id: Id724a9950b90504721233022c7fb5768e9bc5548
Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk>
Reviewed-on: http://openocd.zylin.com/649
Tested-by: jenkins
Reviewed-by: Xiaofan <xiaofanc@gmail.com>
This commit is contained in:
Spencer Oliver 2012-05-17 12:27:30 +01:00
parent a34b38d621
commit 7bfcc10839
24 changed files with 1 additions and 40 deletions

View File

@ -11,6 +11,7 @@ AM_MAINTAINER_MODE
AM_CONFIG_HEADER([config.h]) AM_CONFIG_HEADER([config.h])
AH_BOTTOM([ AH_BOTTOM([
#include <helper/system.h> #include <helper/system.h>
#include <helper/types.h>
#include <helper/replacements.h> #include <helper/replacements.h>
]) ])

View File

@ -24,8 +24,6 @@
#ifndef BINARYBUFFER_H #ifndef BINARYBUFFER_H
#define BINARYBUFFER_H #define BINARYBUFFER_H
#include <helper/types.h>
/** @file /** @file
* Support functions to access arbitrary bits in a byte array * Support functions to access arbitrary bits in a byte array
*/ */

View File

@ -24,8 +24,6 @@
#ifndef COMMAND_H #ifndef COMMAND_H
#define COMMAND_H #define COMMAND_H
#include <helper/types.h>
#include <jim.h> #include <jim.h>
#include <jim-nvp.h> #include <jim-nvp.h>

View File

@ -27,8 +27,6 @@
#ifndef FILEIO_H #ifndef FILEIO_H
#define FILEIO_H #define FILEIO_H
#include <helper/types.h>
#define FILEIO_MAX_ERROR_STRING (128) #define FILEIO_MAX_ERROR_STRING (128)
enum fileio_type { enum fileio_type {

View File

@ -139,8 +139,6 @@ static inline unsigned usleep(unsigned int usecs)
#include <windows.h> #include <windows.h>
#include <time.h> #include <time.h>
#include <helper/types.h>
/* Windows does not declare sockaddr_un */ /* Windows does not declare sockaddr_un */
#define UNIX_PATH_LEN 108 #define UNIX_PATH_LEN 108
struct sockaddr_un { struct sockaddr_un {
@ -230,8 +228,6 @@ static inline int socket_select(int max_fd,
#ifndef HAVE_ELF_H #ifndef HAVE_ELF_H
#include <helper/types.h>
typedef uint32_t Elf32_Addr; typedef uint32_t Elf32_Addr;
typedef uint16_t Elf32_Half; typedef uint16_t Elf32_Half;
typedef uint32_t Elf32_Off; typedef uint32_t Elf32_Off;

View File

@ -22,7 +22,6 @@
#ifndef JTAG_LIBUSB_COMMON_H #ifndef JTAG_LIBUSB_COMMON_H
#define JTAG_LIBUSB_COMMON_H #define JTAG_LIBUSB_COMMON_H
#include <helper/types.h>
#include <usb.h> #include <usb.h>
#define jtag_libusb_device usb_device #define jtag_libusb_device usb_device

View File

@ -22,7 +22,6 @@
#ifndef JTAG_LIBUSB_COMMON_H #ifndef JTAG_LIBUSB_COMMON_H
#define JTAG_LIBUSB_COMMON_H #define JTAG_LIBUSB_COMMON_H
#include <helper/types.h>
#include <libusb-1.0/libusb.h> #include <libusb-1.0/libusb.h>
#define jtag_libusb_device libusb_device #define jtag_libusb_device libusb_device

View File

@ -18,8 +18,6 @@
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/ ***************************************************************************/
#include <helper/types.h>
struct rlink_speed_table { struct rlink_speed_table {
uint8_t const *dtc; uint8_t const *dtc;
uint16_t dtc_size; uint16_t dtc_size;

View File

@ -26,7 +26,6 @@
#include <jtag/interface.h> #include <jtag/interface.h>
#include <jtag/commands.h> #include <jtag/commands.h>
#include <target/image.h> #include <target/image.h>
#include <helper/types.h>
#include "usb_common.h" #include "usb_common.h"
#include "OpenULINK/include/msgtypes.h" #include "OpenULINK/include/msgtypes.h"

View File

@ -20,8 +20,6 @@
#ifndef JTAG_USB_COMMON_H #ifndef JTAG_USB_COMMON_H
#define JTAG_USB_COMMON_H #define JTAG_USB_COMMON_H
#include <helper/types.h>
#include <usb.h> #include <usb.h>
int jtag_usb_open(const uint16_t vids[], const uint16_t pids[], int jtag_usb_open(const uint16_t vids[], const uint16_t pids[],

View File

@ -21,8 +21,6 @@
#ifndef XILINX_BIT_H #ifndef XILINX_BIT_H
#define XILINX_BIT_H #define XILINX_BIT_H
#include <helper/types.h>
struct xilinx_bit_file { struct xilinx_bit_file {
uint8_t unknown_header[13]; uint8_t unknown_header[13];
uint8_t *source_file; uint8_t *source_file;

View File

@ -22,7 +22,6 @@
#define RTOS_H #define RTOS_H
#include "server/server.h" #include "server/server.h"
#include <helper/types.h>
#include <jim-nvp.h> #include <jim-nvp.h>
typedef int64_t threadid_t; typedef int64_t threadid_t;

View File

@ -21,8 +21,6 @@
#ifndef ARM_DISASSEMBLER_H #ifndef ARM_DISASSEMBLER_H
#define ARM_DISASSEMBLER_H #define ARM_DISASSEMBLER_H
#include <helper/types.h>
enum arm_instruction_type { enum arm_instruction_type {
ARM_UNKNOWN_INSTUCTION, ARM_UNKNOWN_INSTUCTION,

View File

@ -21,8 +21,6 @@
#ifndef ARM_SIMULATOR_H #ifndef ARM_SIMULATOR_H
#define ARM_SIMULATOR_H #define ARM_SIMULATOR_H
#include <helper/types.h>
struct target; struct target;
struct arm_sim_interface { struct arm_sim_interface {

View File

@ -21,8 +21,6 @@
#ifndef ARMV4_5_CACHE_H #ifndef ARMV4_5_CACHE_H
#define ARMV4_5_CACHE_H #define ARMV4_5_CACHE_H
#include <helper/types.h>
struct command_context; struct command_context;
struct armv4_5_cachesize { struct armv4_5_cachesize {

View File

@ -20,8 +20,6 @@
#ifndef AVR32_AP7K #ifndef AVR32_AP7K
#define AVR32_AP7K #define AVR32_AP7K
#include <helper/types.h>
struct target; struct target;
#define AP7k_COMMON_MAGIC 0x4150374b #define AP7k_COMMON_MAGIC 0x4150374b

View File

@ -22,7 +22,6 @@
#endif #endif
#include "target.h" #include "target.h"
#include "helper/types.h"
#include "jtag/jtag.h" #include "jtag/jtag.h"
#include "avr32_jtag.h" #include "avr32_jtag.h"

View File

@ -21,8 +21,6 @@
#ifndef BREAKPOINTS_H #ifndef BREAKPOINTS_H
#define BREAKPOINTS_H #define BREAKPOINTS_H
#include <helper/types.h>
struct target; struct target;
enum breakpoint_type { enum breakpoint_type {

View File

@ -26,8 +26,6 @@
#ifndef MIPS_M4K_H #ifndef MIPS_M4K_H
#define MIPS_M4K_H #define MIPS_M4K_H
#include <helper/types.h>
struct target; struct target;
#define MIPSM4K_COMMON_MAGIC 0xB321B321 #define MIPSM4K_COMMON_MAGIC 0xB321B321

View File

@ -25,7 +25,6 @@
#include "config.h" #include "config.h"
#endif #endif
#include <helper/types.h>
#include "register.h" #include "register.h"
#include <helper/log.h> #include <helper/log.h>

View File

@ -23,7 +23,6 @@
#endif #endif
#include "server/server.h" #include "server/server.h"
#include <helper/types.h>
#include "target/target.h" #include "target/target.h"

View File

@ -33,8 +33,6 @@
#ifndef TARGET_H #ifndef TARGET_H
#define TARGET_H #define TARGET_H
#include <helper/types.h>
struct reg; struct reg;
struct trace; struct trace;
struct command_context; struct command_context;

View File

@ -27,7 +27,6 @@
#ifndef TARGET_TYPE_H #ifndef TARGET_TYPE_H
#define TARGET_TYPE_H #define TARGET_TYPE_H
#include <helper/types.h>
#include <jim-nvp.h> #include <jim-nvp.h>
struct target; struct target;

View File

@ -21,8 +21,6 @@
#ifndef TRACE_H #ifndef TRACE_H
#define TRACE_H #define TRACE_H
#include <helper/types.h>
struct target; struct target;
struct command_context; struct command_context;