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

#include "arm966e.h"

the following form should be used.

#include <target/arm966e.h>

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

src/flash/nor/str9x.c

index 7b345809fc08c5069b42071764838e892d8ded80..045ab20bbe1732c4bdd2c3d5da7c4046e8fb295c 100644 (file)
@@ -28,7 +28,7 @@
 #endif
 
 #include "str9x.h"
-#include "arm966e.h"
+#include <target/arm966e.h>
 #include <target/algorithm.h>