From a8880f0b5ab7f5c9d4d3b031fd487caac766b99f Mon Sep 17 00:00:00 2001
From: Zachary T Welch <zw@superlucidity.net>
Date: Thu, 3 Dec 2009 04:14:48 -0800
Subject: [PATCH] change #include "mips32.h" to <target/mips32.h>

Changes from the flat namespace to heirarchical one.  Instead of writing:

	#include "mips32.h"

the following form should be used.

	#include <target/mips32.h>

The exception is from .c files in the same directory.
---
 src/flash/nor/pic32mx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/flash/nor/pic32mx.c b/src/flash/nor/pic32mx.c
index 9bb6c97ed..d2289b297 100644
--- a/src/flash/nor/pic32mx.c
+++ b/src/flash/nor/pic32mx.c
@@ -28,7 +28,7 @@
 #endif
 
 #include "pic32mx.h"
-#include "mips32.h"
+#include <target/mips32.h>
 
 
 static
-- 
GitLab