aboutsummaryrefslogtreecommitdiff
path: root/keyboards/jm60
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/jm60')
-rw-r--r--keyboards/jm60/boards/JM60_BOARD/board.c2
-rw-r--r--keyboards/jm60/led.c2
-rw-r--r--keyboards/jm60/matrix.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/keyboards/jm60/boards/JM60_BOARD/board.c b/keyboards/jm60/boards/JM60_BOARD/board.c
index d953d6a13..48844e34a 100644
--- a/keyboards/jm60/boards/JM60_BOARD/board.c
+++ b/keyboards/jm60/boards/JM60_BOARD/board.c
@@ -14,7 +14,7 @@
14 limitations under the License. 14 limitations under the License.
15*/ 15*/
16 16
17#include "hal.h" 17#include <hal.h>
18 18
19/** 19/**
20 * @brief PAL setup. 20 * @brief PAL setup.
diff --git a/keyboards/jm60/led.c b/keyboards/jm60/led.c
index aed66c7c0..4ce0b3e26 100644
--- a/keyboards/jm60/led.c
+++ b/keyboards/jm60/led.c
@@ -15,7 +15,7 @@ You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>. 15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/ 16*/
17 17
18#include "hal.h" 18#include <hal.h>
19 19
20#include "led.h" 20#include "led.h"
21 21
diff --git a/keyboards/jm60/matrix.c b/keyboards/jm60/matrix.c
index 01bb4a80d..e19d4f02b 100644
--- a/keyboards/jm60/matrix.c
+++ b/keyboards/jm60/matrix.c
@@ -1,7 +1,7 @@
1#include <stdint.h> 1#include <stdint.h>
2#include <stdbool.h> 2#include <stdbool.h>
3#include <string.h> 3#include <string.h>
4#include "hal.h" 4#include <hal.h>
5#include "timer.h" 5#include "timer.h"
6#include "wait.h" 6#include "wait.h"
7#include "print.h" 7#include "print.h"