From 84879f28a3e9e61053f7db37724b23bb32fbb0b4 Mon Sep 17 00:00:00 2001 From: skullY Date: Sun, 27 Jan 2019 16:58:21 -0800 Subject: [PATCH] fix compiling for backlight without led matrix --- quantum/quantum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quantum/quantum.c b/quantum/quantum.c index 0e605d4cb..376578ade 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c @@ -1206,7 +1206,7 @@ static inline void set_pwm(uint16_t val) { OCRxx = val; } -#ifndef BACKLIGHT_CUSTOM_DRIVER || LED_MATRIX_ENABLE +#ifndef BACKLIGHT_CUSTOM_DRIVER __attribute__ ((weak)) void backlight_set(uint8_t level) { if (level > BACKLIGHT_LEVELS) -- 2.39.2