Skip to content

Commit

Permalink
Fix misplaced endif in led_matrix_drivers.c (qmk#14785)
Browse files Browse the repository at this point in the history
  • Loading branch information
fauxpark authored and ptrxyz committed Nov 6, 2021
1 parent 0ed81dc commit bfc6c8a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions quantum/led_matrix/led_matrix_drivers.c
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit bfc6c8a

Please sign in to comment.