diff options
Diffstat (limited to 'keyboards/torn')
-rw-r--r-- | keyboards/torn/bongocat.c | 2 | ||||
-rw-r--r-- | keyboards/torn/matrix.c | 2 | ||||
-rw-r--r-- | keyboards/torn/mcp23018.c | 1 | ||||
-rw-r--r-- | keyboards/torn/mcp23018.h | 3 |
4 files changed, 5 insertions, 3 deletions
diff --git a/keyboards/torn/bongocat.c b/keyboards/torn/bongocat.c index 9d6d9a85f5..8ca5e512f8 100644 --- a/keyboards/torn/bongocat.c +++ b/keyboards/torn/bongocat.c @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include QMK_KEYBOARD_H +#include "torn.h" #ifdef OLED_ENABLE diff --git a/keyboards/torn/matrix.c b/keyboards/torn/matrix.c index dd7fa1e2e1..b674f21d57 100644 --- a/keyboards/torn/matrix.c +++ b/keyboards/torn/matrix.c @@ -16,7 +16,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include QMK_KEYBOARD_H +#include "matrix.h" #include "mcp23018.h" #define SPLIT_MATRIX_COLS (MATRIX_COLS / 2) diff --git a/keyboards/torn/mcp23018.c b/keyboards/torn/mcp23018.c index c180f1dae5..12c4f9bc7f 100644 --- a/keyboards/torn/mcp23018.c +++ b/keyboards/torn/mcp23018.c @@ -16,7 +16,6 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include QMK_KEYBOARD_H #include "i2c_master.h" #include "mcp23018.h" diff --git a/keyboards/torn/mcp23018.h b/keyboards/torn/mcp23018.h index 17ecaa5a7c..af5dbc7b25 100644 --- a/keyboards/torn/mcp23018.h +++ b/keyboards/torn/mcp23018.h @@ -17,6 +17,9 @@ #pragma once +#include <stdbool.h> +#include <stdint.h> + #define IODIRA 0x00 #define IODIRB 0x01 #define GPPUA 0x0C |