aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/action.c2
-rw-r--r--common/action_layer.c (renamed from common/layer_switch.c)2
-rw-r--r--common/action_layer.h (renamed from common/layer_switch.h)4
-rw-r--r--common/command.c2
-rw-r--r--common/keymap.c2
5 files changed, 6 insertions, 6 deletions
diff --git a/common/action.c b/common/action.c
index 596831d4d..158522dd0 100644
--- a/common/action.c
+++ b/common/action.c
@@ -21,7 +21,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
21#include "command.h" 21#include "command.h"
22#include "debug.h" 22#include "debug.h"
23#include "led.h" 23#include "led.h"
24#include "layer_switch.h" 24#include "action_layer.h"
25#include "action_tapping.h" 25#include "action_tapping.h"
26#include "action_oneshot.h" 26#include "action_oneshot.h"
27#include "action_macro.h" 27#include "action_macro.h"
diff --git a/common/layer_switch.c b/common/action_layer.c
index 9905741f4..3413c53e6 100644
--- a/common/layer_switch.c
+++ b/common/action_layer.c
@@ -3,7 +3,7 @@
3#include "action.h" 3#include "action.h"
4#include "debug.h" 4#include "debug.h"
5#include "util.h" 5#include "util.h"
6#include "layer_switch.h" 6#include "action_layer.h"
7 7
8 8
9/* 9/*
diff --git a/common/layer_switch.h b/common/action_layer.h
index ed8dfb502..23f8a00bb 100644
--- a/common/layer_switch.h
+++ b/common/action_layer.h
@@ -14,8 +14,8 @@ GNU General Public License for more details.
14You should have received a copy of the GNU General Public License 14You 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#ifndef LAYER_SWITCH_H 17#ifndef ACTION_LAYER_H
18#define LAYER_SWITCH_H 18#define ACTION_LAYER_H
19 19
20#include <stdint.h> 20#include <stdint.h>
21#include "keyboard.h" 21#include "keyboard.h"
diff --git a/common/command.c b/common/command.c
index c954ff02f..dc06c6da3 100644
--- a/common/command.c
+++ b/common/command.c
@@ -26,7 +26,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
26#include "timer.h" 26#include "timer.h"
27#include "keyboard.h" 27#include "keyboard.h"
28#include "bootloader.h" 28#include "bootloader.h"
29#include "layer_switch.h" 29#include "action_layer.h"
30#include "eeconfig.h" 30#include "eeconfig.h"
31#include "sleep_led.h" 31#include "sleep_led.h"
32#include "led.h" 32#include "led.h"
diff --git a/common/keymap.c b/common/keymap.c
index ace3f49b6..c98ce09b6 100644
--- a/common/keymap.c
+++ b/common/keymap.c
@@ -18,7 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
18#include "keymap.h" 18#include "keymap.h"
19#include "report.h" 19#include "report.h"
20#include "keycode.h" 20#include "keycode.h"
21#include "layer_switch.h" 21#include "action_layer.h"
22#include "action.h" 22#include "action.h"
23#include "action_macro.h" 23#include "action_macro.h"
24#include "debug.h" 24#include "debug.h"