diff options
author | Erez Zukerman <bulk@ezuk.org> | 2018-07-03 14:06:36 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-03 14:06:36 -0400 |
commit | 9c2dde98e2b963704eb7cb87f6c53c52599fba53 (patch) | |
tree | ced26f98b401d83aee69a6ee3b17bf9fbc6ad556 /quantum/quantum.c | |
parent | a7df902734b6aa8975e3a62a07ddb5544fd4ae85 (diff) | |
parent | 08283f61244479743c4ff5ecba39bd0264979d77 (diff) |
Merge pull request #3229 from qmk/hf/shinydox
Adds I2C timeout and return values, adds support for future RGB Ergodox EZ
Diffstat (limited to 'quantum/quantum.c')
-rw-r--r-- | quantum/quantum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c index cfa3df7418..5abd222d19 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c @@ -854,7 +854,7 @@ void matrix_init_quantum() { audio_init(); #endif #ifdef RGB_MATRIX_ENABLE - rgb_matrix_init_drivers(); + rgb_matrix_init(); #endif matrix_init_kb(); } |