diff options
author | Ryan <fauxpark@gmail.com> | 2020-12-16 14:27:23 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-16 14:27:23 +1100 |
commit | 9366ed728280f4875ebbba9c0ef1eade03c96d35 (patch) | |
tree | 93a1b85a28ccf4d4fa0b620ad3abcbf566168506 /keyboards/ergodox_infinity | |
parent | 37fb14f1b5cbcb0e5ff60abc9152073635234ba4 (diff) |
Normalise include statements in keyboard code (#11185)
Diffstat (limited to 'keyboards/ergodox_infinity')
-rw-r--r-- | keyboards/ergodox_infinity/ergodox_infinity.c | 4 | ||||
-rw-r--r-- | keyboards/ergodox_infinity/led.c | 2 | ||||
-rw-r--r-- | keyboards/ergodox_infinity/matrix.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/keyboards/ergodox_infinity/ergodox_infinity.c b/keyboards/ergodox_infinity/ergodox_infinity.c index c69c1eb36f..a9962f96a0 100644 --- a/keyboards/ergodox_infinity/ergodox_infinity.c +++ b/keyboards/ergodox_infinity/ergodox_infinity.c @@ -1,6 +1,6 @@ #include QMK_KEYBOARD_H -#include "ch.h" -#include "hal.h" +#include <ch.h> +#include <hal.h> #include "serial_link/system/serial_link.h" #ifdef VISUALIZER_ENABLE #include "lcd_backlight.h" diff --git a/keyboards/ergodox_infinity/led.c b/keyboards/ergodox_infinity/led.c index 8175c1c5c5..0b50247d7a 100644 --- a/keyboards/ergodox_infinity/led.c +++ b/keyboards/ergodox_infinity/led.c @@ -15,7 +15,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 "hal.h" +#include <hal.h> #include "led.h" diff --git a/keyboards/ergodox_infinity/matrix.c b/keyboards/ergodox_infinity/matrix.c index 941367a360..7baacd24d0 100644 --- a/keyboards/ergodox_infinity/matrix.c +++ b/keyboards/ergodox_infinity/matrix.c @@ -18,7 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include <stdint.h> #include <stdbool.h> #include <string.h> -#include "hal.h" +#include <hal.h> #include "timer.h" #include "wait.h" #include "print.h" |