diff options
| author | Ryan | 2024-03-18 12:03:27 +0100 |
|---|---|---|
| committer | GitHub | 2024-03-18 12:03:27 +0100 |
| commit | f7cf40fa77164d7be9358ce83f7f5939d71b38bc (patch) | |
| tree | 812acccac18212ae685a4dbc5e25fbe216b787ea /quantum/rgblight/rgblight.c | |
| parent | 23b7a02ebe2e6df738baa624c17e821c1573b69b (diff) | |
Add init function to RGBLight driver struct (#23076)
Diffstat (limited to 'quantum/rgblight/rgblight.c')
| -rw-r--r-- | quantum/rgblight/rgblight.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/quantum/rgblight/rgblight.c b/quantum/rgblight/rgblight.c index 530cb04688..28b58feea6 100644 --- a/quantum/rgblight/rgblight.c +++ b/quantum/rgblight/rgblight.c @@ -247,6 +247,8 @@ void rgblight_init(void) { rgblight_mode_noeeprom(rgblight_config.mode); } + rgblight_driver.init(); + is_rgblight_initialized = true; } |