diff options
author | Jun Wako <wakojun@gmail.com> | 2014-12-14 07:52:33 +0100 |
---|---|---|
committer | Jun Wako <wakojun@gmail.com> | 2015-01-04 09:21:43 +0100 |
commit | 541913029150d57e83396293d35807a16d3755e8 (patch) | |
tree | 3e39a2fe626b371f2e87adb83c2866e2cbc8d7f8 | |
parent | 75a59e4d12a13efc03cacd85b394fcf1204aad76 (diff) | |
download | qmk_firmware-541913029150d57e83396293d35807a16d3755e8.tar.gz qmk_firmware-541913029150d57e83396293d35807a16d3755e8.tar.xz |
Fix ps2 protocol build using ps2_io.h
-rw-r--r-- | protocol/ps2_interrupt.c | 1 | ||||
-rw-r--r-- | protocol/ps2_usart.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/protocol/ps2_interrupt.c b/protocol/ps2_interrupt.c index 259d25400..8114442ba 100644 --- a/protocol/ps2_interrupt.c +++ b/protocol/ps2_interrupt.c @@ -43,6 +43,7 @@ POSSIBILITY OF SUCH DAMAGE. #include <avr/interrupt.h> #include <util/delay.h> #include "ps2.h" +#include "ps2_io.h" #include "print.h" diff --git a/protocol/ps2_usart.c b/protocol/ps2_usart.c index c2d9d0a20..6936ca7b8 100644 --- a/protocol/ps2_usart.c +++ b/protocol/ps2_usart.c @@ -43,6 +43,7 @@ POSSIBILITY OF SUCH DAMAGE. #include <avr/interrupt.h> #include <util/delay.h> #include "ps2.h" +#include "ps2_io.h" #include "print.h" |