]> git.sur5r.net Git - openocd/blobdiff - src/target/oocd_trace.h
Make #include guard naming consistent
[openocd] / src / target / oocd_trace.h
index 7c334f248d6d53aed929f6bf24575dbd62a7076a..e7584e4c9dbf26d37afcb8cef5cf6b1090593af4 100644 (file)
  *   GNU General Public License for more details.                          *
  *                                                                         *
  *   You should have received a copy of the GNU General Public License     *
- *   along with this program; if not, write to the                         *
- *   Free Software Foundation, Inc.,                                       *
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+ *   along with this program.  If not, see <http://www.gnu.org/licenses/>. *
  ***************************************************************************/
-#ifndef OOCD_TRACE_H
-#define OOCD_TRACE_H
 
-#include <target/etm.h>
+#ifndef OPENOCD_TARGET_OOCD_TRACE_H
+#define OPENOCD_TARGET_OOCD_TRACE_H
 
 #include <termios.h>
 
 /* registers */
-enum
-{
+enum {
        OOCD_TRACE_ID = 0x7,
        OOCD_TRACE_ADDRESS = 0x0,
        OOCD_TRACE_TRIGGER_COUNTER = 0x01,
@@ -36,8 +32,7 @@ enum
 };
 
 /* commands */
-enum
-{
+enum {
        OOCD_TRACE_NOP = 0x0,
        OOCD_TRACE_READ_REG = 0x10,
        OOCD_TRACE_WRITE_REG = 0x18,
@@ -46,8 +41,7 @@ enum
        OOCD_TRACE_RESYNC = 0xf0,
 };
 
-struct oocd_trace
-{
+struct oocd_trace {
        struct etm_context *etm_ctx;
        char *tty;
        int tty_fd;
@@ -56,4 +50,4 @@ struct oocd_trace
 
 extern struct etm_capture_driver oocd_trace_capture_driver;
 
-#endif /* OOCD_TRACE_TRACE_H */
+#endif /* OPENOCD_TARGET_OOCD_TRACE_H */