Browse Source

Fix misplaced endif in led_matrix_drivers.c (#14785)

pull/14591/head
Ryan 2 years ago
committed by GitHub
parent
commit
61cc9e8042
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      quantum/led_matrix/led_matrix_drivers.c

+ 4
- 4
quantum/led_matrix/led_matrix_drivers.c View File

@ -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

Loading…
Cancel
Save