aboutsummaryrefslogtreecommitdiffstats
path: root/quantum
diff options
context:
space:
mode:
authorRyan2021-10-11 06:32:29 +0200
committerGitHub2021-10-11 06:32:29 +0200
commit61cc9e8042ce56bb35f21bedb7ba183ead34fb8e (patch)
tree48e3e7eb060565f2a1c36bbeef4d31ad26fa1ae2 /quantum
parent00417450547478e71ced0c7ff4e92ff4dc6ffd68 (diff)
Fix misplaced endif in led_matrix_drivers.c (#14785)
Diffstat (limited to 'quantum')
-rw-r--r--quantum/led_matrix/led_matrix_drivers.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/quantum/led_matrix/led_matrix_drivers.c b/quantum/led_matrix/led_matrix_drivers.c
index efe0082dcb..2157619a0b 100644
--- a/quantum/led_matrix/led_matrix_drivers.c
+++ b/quantum/led_matrix/led_matrix_drivers.c
@@ -136,13 +136,13 @@ static void flush(void) {
# endif
# endif
# endif
-# endif
}
const led_matrix_driver_t led_matrix_driver = {
- .init = init,
- .flush = flush,
- .set_value = IS31FL3733_set_value,
+ .init = init,
+ .flush = flush,
+ .set_value = IS31FL3733_set_value,
.set_value_all = IS31FL3733_set_value_all,
};
+# endif
#endif