From: Zachary T Welch Date: Thu, 3 Dec 2009 12:14:26 +0000 (-0800) Subject: change #include "configuration.h" to X-Git-Tag: v0.4.0-rc1~200 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=0b7720d2ffc92a1a27bc01cb05ebd7d8d83c427c;p=openocd change #include "configuration.h" to Changes from the flat namespace to heirarchical one. Instead of writing: #include "configuration.h" the following form should be used. #include The exception is from .c files in the same directory. --- diff --git a/src/ecosboard.c b/src/ecosboard.c index cfb57655..d979c187 100644 --- a/src/ecosboard.c +++ b/src/ecosboard.c @@ -24,7 +24,7 @@ #include "types.h" #include "jtag.h" #include "ioutil.h" -#include "configuration.h" +#include #include "xsvf.h" #include "svf.h" #include "nand.h" diff --git a/src/openocd.c b/src/openocd.c index 9a080191..9c8bcac0 100644 --- a/src/openocd.c +++ b/src/openocd.c @@ -31,7 +31,7 @@ #include "openocd.h" #include "jtag.h" #include "ioutil.h" -#include "configuration.h" +#include #include "xsvf.h" #include "svf.h" #include "nand.h"