summaryrefslogtreecommitdiffstats
path: root/quantum/quantum.c
diff options
context:
space:
mode:
authorskullY <skullydazed@gmail.com>2019-01-28 01:58:21 +0100
committerskullydazed <skullydazed@users.noreply.github.com>2019-02-11 00:37:12 +0100
commit84879f28a3e9e61053f7db37724b23bb32fbb0b4 (patch)
treebc3b0efd63d079a7cd2d2bef8d8589b29cc53525 /quantum/quantum.c
parentc080a3e7c4aa565c696224588b16d4e883f60a7b (diff)
downloadqmk_firmware-84879f28a3e9e61053f7db37724b23bb32fbb0b4.tar.gz
qmk_firmware-84879f28a3e9e61053f7db37724b23bb32fbb0b4.tar.xz
fix compiling for backlight without led matrix
Diffstat (limited to 'quantum/quantum.c')
-rw-r--r--quantum/quantum.c2
1 files changed, 1 insertions, 1 deletions
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)