Fix misplaced endif in led_matrix_drivers.c (#14785)

This commit is contained in:
Ryan 2021-10-11 15:32:29 +11:00 committed by GitHub
parent 0041745054
commit 61cc9e8042
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -136,13 +136,13 @@ static void flush(void) {
# endif # endif
# endif # endif
# endif # endif
# endif
} }
const led_matrix_driver_t led_matrix_driver = { const led_matrix_driver_t led_matrix_driver = {
.init = init, .init = init,
.flush = flush, .flush = flush,
.set_value = IS31FL3733_set_value, .set_value = IS31FL3733_set_value,
.set_value_all = IS31FL3733_set_value_all, .set_value_all = IS31FL3733_set_value_all,
}; };
# endif
#endif #endif