From: Zachary T Welch Date: Thu, 3 Dec 2009 12:14:43 +0000 (-0800) Subject: change #include "armv7a.h" to X-Git-Tag: v0.4.0-rc1~175 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=a1c40f5120bd45f98974fd73d1cdaa10c674f09c change #include "armv7a.h" to Changes from the flat namespace to heirarchical one. Instead of writing: #include "armv7a.h" the following form should be used. #include The exception is from .c files in the same directory. --- diff --git a/src/target/cortex_a8.h b/src/target/cortex_a8.h index 87db23ec43..adffe935a3 100644 --- a/src/target/cortex_a8.h +++ b/src/target/cortex_a8.h @@ -29,7 +29,7 @@ #ifndef CORTEX_A8_H #define CORTEX_A8_H -#include "armv7a.h" +#include extern char* cortex_a8_state_strings[];