summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-12-03 04:14:28 -0800
committerZachary T Welch <zw@superlucidity.net>2009-12-03 04:22:52 -0800
commitc79cca04bed78839a18e73f3996805eb8001a812 (patch)
treeef31b13038a68d5d864c005d9ef5c736528fe6c3
parent35f1a40f6fad146db9d5546c47c45472d0ef0bed (diff)
downloadopenocd+libswd-c79cca04bed78839a18e73f3996805eb8001a812.tar.gz
openocd+libswd-c79cca04bed78839a18e73f3996805eb8001a812.tar.bz2
openocd+libswd-c79cca04bed78839a18e73f3996805eb8001a812.tar.xz
openocd+libswd-c79cca04bed78839a18e73f3996805eb8001a812.zip
change #include "log.h" to <helper/log.h>
Changes from the flat namespace to heirarchical one. Instead of writing: #include "log.h" the following form should be used. #include <helper/log.h> The exception is from .c files in the same directory.
-rw-r--r--src/flash/common.c2
-rw-r--r--src/flash/flash.h2
-rw-r--r--src/flash/mflash.c2
-rw-r--r--src/hello.c2
-rw-r--r--src/jtag/jtag.h2
-rw-r--r--src/pld/pld.c2
-rw-r--r--src/pld/xilinx_bit.c2
-rw-r--r--src/server/httpd_stubs.c2
-rw-r--r--src/server/server.h2
-rw-r--r--src/target/arm_disassembler.c2
-rw-r--r--src/target/arm_simulator.c2
-rw-r--r--src/target/armv4_5_cache.c2
-rw-r--r--src/target/armv4_5_mmu.c2
-rw-r--r--src/target/breakpoints.c2
-rw-r--r--src/target/image.c2
-rw-r--r--src/target/register.c2
-rw-r--r--src/target/target_request.c2
-rw-r--r--src/target/testee.c2
-rw-r--r--src/target/trace.c2
19 files changed, 19 insertions, 19 deletions
diff --git a/src/flash/common.c b/src/flash/common.c
index 072e6912..17bc81c2 100644
--- a/src/flash/common.c
+++ b/src/flash/common.c
@@ -21,7 +21,7 @@
#endif
#include "common.h"
-#include "log.h"
+#include <helper/log.h>
unsigned get_flash_name_index(const char *name)
{
diff --git a/src/flash/flash.h b/src/flash/flash.h
index 92727bf9..fea7372c 100644
--- a/src/flash/flash.h
+++ b/src/flash/flash.h
@@ -27,7 +27,7 @@
#define FLASH_H
#include "target.h"
-#include "log.h"
+#include <helper/log.h>
struct image;
diff --git a/src/flash/mflash.c b/src/flash/mflash.c
index 72faae22..43d8ddd3 100644
--- a/src/flash/mflash.c
+++ b/src/flash/mflash.c
@@ -25,7 +25,7 @@
#include "target.h"
#include "time_support.h"
#include <helper/fileio.h>
-#include "log.h"
+#include <helper/log.h>
static int s3c2440_set_gpio_to_output (struct mflash_gpio_num gpio);
diff --git a/src/hello.c b/src/hello.c
index cfd6e2fe..0cd06adc 100644
--- a/src/hello.c
+++ b/src/hello.c
@@ -20,7 +20,7 @@
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
-#include "log.h"
+#include <helper/log.h>
COMMAND_HANDLER(handle_foo_command)
{
diff --git a/src/jtag/jtag.h b/src/jtag/jtag.h
index 694e2f7e..eaa0c7c7 100644
--- a/src/jtag/jtag.h
+++ b/src/jtag/jtag.h
@@ -24,7 +24,7 @@
#define JTAG_H
#include <helper/binarybuffer.h>
-#include "log.h"
+#include <helper/log.h>
#ifdef _DEBUG_JTAG_IO_
#define DEBUG_JTAG_IO(expr ...) \
diff --git a/src/pld/pld.c b/src/pld/pld.c
index df7ac0de..985e3648 100644
--- a/src/pld/pld.c
+++ b/src/pld/pld.c
@@ -22,7 +22,7 @@
#endif
#include "pld.h"
-#include "log.h"
+#include <helper/log.h>
#include "time_support.h"
diff --git a/src/pld/xilinx_bit.c b/src/pld/xilinx_bit.c
index 70edbf57..1ae1ea8d 100644
--- a/src/pld/xilinx_bit.c
+++ b/src/pld/xilinx_bit.c
@@ -23,7 +23,7 @@
#include "xilinx_bit.h"
#include "pld.h"
-#include "log.h"
+#include <helper/log.h>
#include <sys/stat.h>
diff --git a/src/server/httpd_stubs.c b/src/server/httpd_stubs.c
index 6c289afa..0360fe61 100644
--- a/src/server/httpd_stubs.c
+++ b/src/server/httpd_stubs.c
@@ -21,7 +21,7 @@
#include <config.h>
#endif
#include "httpd.h"
-#include "log.h"
+#include <helper/log.h>
int httpd_start(struct command_context *cmd_ctx)
{
diff --git a/src/server/server.h b/src/server/server.h
index e632bf1e..be1afbe4 100644
--- a/src/server/server.h
+++ b/src/server/server.h
@@ -26,7 +26,7 @@
#ifndef SERVER_H
#define SERVER_H
-#include "log.h"
+#include <helper/log.h>
#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
diff --git a/src/target/arm_disassembler.c b/src/target/arm_disassembler.c
index b93df64d..29ca23ca 100644
--- a/src/target/arm_disassembler.c
+++ b/src/target/arm_disassembler.c
@@ -25,7 +25,7 @@
#include "target.h"
#include "arm_disassembler.h"
-#include "log.h"
+#include <helper/log.h>
/*
diff --git a/src/target/arm_simulator.c b/src/target/arm_simulator.c
index b96a08a1..4b8d86e7 100644
--- a/src/target/arm_simulator.c
+++ b/src/target/arm_simulator.c
@@ -29,7 +29,7 @@
#include "arm_simulator.h"
#include <helper/binarybuffer.h>
#include "register.h"
-#include "log.h"
+#include <helper/log.h>
static uint32_t arm_shift(uint8_t shift, uint32_t Rm,
diff --git a/src/target/armv4_5_cache.c b/src/target/armv4_5_cache.c
index 58fc0c1d..dcbcef3a 100644
--- a/src/target/armv4_5_cache.c
+++ b/src/target/armv4_5_cache.c
@@ -22,7 +22,7 @@
#endif
#include "armv4_5_cache.h"
-#include "log.h"
+#include <helper/log.h>
int armv4_5_identify_cache(uint32_t cache_type_reg, struct armv4_5_cache_common *cache)
{
diff --git a/src/target/armv4_5_mmu.c b/src/target/armv4_5_mmu.c
index 4651960f..4d2fbeeb 100644
--- a/src/target/armv4_5_mmu.c
+++ b/src/target/armv4_5_mmu.c
@@ -21,7 +21,7 @@
#include "config.h"
#endif
-#include "log.h"
+#include <helper/log.h>
#include "target.h"
#include "armv4_5_mmu.h"
diff --git a/src/target/breakpoints.c b/src/target/breakpoints.c
index 2542c41a..637f681d 100644
--- a/src/target/breakpoints.c
+++ b/src/target/breakpoints.c
@@ -22,7 +22,7 @@
#endif
#include "target.h"
-#include "log.h"
+#include <helper/log.h>
#include "breakpoints.h"
diff --git a/src/target/image.c b/src/target/image.c
index ca7123ad..f8d05292 100644
--- a/src/target/image.c
+++ b/src/target/image.c
@@ -32,7 +32,7 @@
#include "image.h"
#include "target.h"
-#include "log.h"
+#include <helper/log.h>
/* convert ELF header field to host endianness */
diff --git a/src/target/register.c b/src/target/register.c
index 392455d0..7b26b740 100644
--- a/src/target/register.c
+++ b/src/target/register.c
@@ -26,7 +26,7 @@
#include "types.h"
#include "register.h"
-#include "log.h"
+#include <helper/log.h>
/**
* @file
diff --git a/src/target/target_request.c b/src/target/target_request.c
index c66cd04c..fc0ba1ac 100644
--- a/src/target/target_request.c
+++ b/src/target/target_request.c
@@ -32,7 +32,7 @@
#include "target_type.h"
#include <helper/binarybuffer.h>
#include "trace.h"
-#include "log.h"
+#include <helper/log.h>
static int charmsg_mode = 0;
diff --git a/src/target/testee.c b/src/target/testee.c
index f8582322..45273887 100644
--- a/src/target/testee.c
+++ b/src/target/testee.c
@@ -22,7 +22,7 @@
#endif
#include "target.h"
#include "target_type.h"
-#include "log.h"
+#include <helper/log.h>
#include "../hello.h"
static const struct command_registration testee_command_handlers[] = {
diff --git a/src/target/trace.c b/src/target/trace.c
index f257592b..99d6bae3 100644
--- a/src/target/trace.c
+++ b/src/target/trace.c
@@ -21,7 +21,7 @@
#include "config.h"
#endif
-#include "log.h"
+#include <helper/log.h>
#include "trace.h"
#include "target.h"