]> git.gag.com Git - fw/openocd/commitdiff
change #include "mflash.h" to <flash/mflash.h>
authorZachary T Welch <zw@superlucidity.net>
Thu, 3 Dec 2009 12:14:55 +0000 (04:14 -0800)
committerZachary T Welch <zw@superlucidity.net>
Thu, 3 Dec 2009 12:24:42 +0000 (04:24 -0800)
Changes from the flat namespace to heirarchical one.  Instead of writing:

#include "mflash.h"

the following form should be used.

#include <flash/mflash.h>

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

src/openocd.c

index 38eb57b0c76933151ef856a812eb91df87233ee6..eae8c0c0165ed948d173492c74b48baec55613fb 100644 (file)
@@ -36,7 +36,7 @@
 #include "svf.h"
 #include "nand.h"
 #include "pld.h"
-#include "mflash.h"
+#include <flash/mflash.h>
 
 #include "server.h"
 #include "gdb_server.h"