summary refs log tree commit diff
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2021-10-11 15:32:29 +1100
committerGitHub <noreply@github.com>2021-10-10 21:32:29 -0700
commit61cc9e8042ce56bb35f21bedb7ba183ead34fb8e (patch)
tree48e3e7eb060565f2a1c36bbeef4d31ad26fa1ae2
parent00417450547478e71ced0c7ff4e92ff4dc6ffd68 (diff)
Fix misplaced endif in led_matrix_drivers.c (#14785)
-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