aboutsummaryrefslogtreecommitdiff
path: root/quantum/keyboard.c
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2021-08-20 21:02:53 -0700
committerGitHub <noreply@github.com>2021-08-20 21:02:53 -0700
commita80d7891472335ec297082daecc6fbf90042c38c (patch)
tree04d34e9dd3658bf471ca9b11db3fa1095b4aa2c0 /quantum/keyboard.c
parentafd3bcbf45a9b7de097d7666ced2c674192949e5 (diff)
downloadqmk_firmware-a80d7891472335ec297082daecc6fbf90042c38c.tar.gz
qmk_firmware-a80d7891472335ec297082daecc6fbf90042c38c.zip
Fix issues with VIA EEPROM init and bring in line with eeconfig functionality (#13243)
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'quantum/keyboard.c')
-rw-r--r--quantum/keyboard.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/quantum/keyboard.c b/quantum/keyboard.c
index 0eb41e7d3..644d8650d 100644
--- a/quantum/keyboard.c
+++ b/quantum/keyboard.c
@@ -309,13 +309,13 @@ void housekeeping_task(void) {
309void keyboard_init(void) { 309void keyboard_init(void) {
310 timer_init(); 310 timer_init();
311 sync_timer_init(); 311 sync_timer_init();
312#ifdef VIA_ENABLE
313 via_init();
314#endif
312 matrix_init(); 315 matrix_init();
313#if defined(CRC_ENABLE) 316#if defined(CRC_ENABLE)
314 crc_init(); 317 crc_init();
315#endif 318#endif
316#ifdef VIA_ENABLE
317 via_init();
318#endif
319#ifdef QWIIC_ENABLE 319#ifdef QWIIC_ENABLE
320 qwiic_init(); 320 qwiic_init();
321#endif 321#endif