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

#include "armv7a.h"

the following form should be used.

#include <target/armv7a.h>

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

src/target/cortex_a8.h

index 87db23ec43b6b68e84bc08128ec52f51f9ebc85b..adffe935a33daa49cfdad20e79427b944dd8fd8b 100644 (file)
@@ -29,7 +29,7 @@
 #ifndef CORTEX_A8_H
 #define CORTEX_A8_H
 
-#include "armv7a.h"
+#include <target/armv7a.h>
 
 extern char* cortex_a8_state_strings[];