change #include "svf.h" to <svf/svf.h>
authorZachary T Welch <zw@superlucidity.net>
Thu, 3 Dec 2009 12:15:05 +0000 (04:15 -0800)
committerZachary T Welch <zw@superlucidity.net>
Thu, 3 Dec 2009 12:24:49 +0000 (04:24 -0800)
Changes from the flat namespace to heirarchical one.  Instead of writing:

#include "svf.h"

the following form should be used.

#include <svf/svf.h>

The exception is from .c files in the same directory.

src/ecosboard.c
src/openocd.c
src/xsvf/xsvf.c

index e4e5cb9d141e3917b1473f6e21f36ced26c13bf5..5dcbfcb967d4ecc1e389e8d44d0277179bd5c624 100644 (file)
@@ -26,7 +26,7 @@
 #include <helper/ioutil.h>
 #include <helper/configuration.h>
 #include "xsvf.h"
-#include "svf.h"
+#include <svf/svf.h>
 #include <flash/nand.h>
 #include <pld/pld.h>
 
index 138f5cbbec4c8c90a5f5d0253e544ac833d4f597..a77bf8962fec205d40cca361feeb2e6ffb0c1e23 100644 (file)
@@ -33,7 +33,7 @@
 #include <helper/ioutil.h>
 #include <helper/configuration.h>
 #include "xsvf.h"
-#include "svf.h"
+#include <svf/svf.h>
 #include <flash/nand.h>
 #include <pld/pld.h>
 #include <flash/mflash.h>
index 5cacbed808a2dea2a3197a6af9e030e5527e160c..b1ddea9b64ffc4cf2c98cd06f6658507402be3f2 100644 (file)
@@ -42,7 +42,7 @@
 
 #include "xsvf.h"
 #include <jtag/jtag.h>
-#include "svf.h"
+#include <svf/svf.h>
 
 
 /* XSVF commands, from appendix B of xapp503.pdf  */