diff options
author | Joel Challis <git@zvecr.com> | 2021-07-31 14:31:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-31 14:31:09 +0100 |
commit | 206a995ccd53b0843e72da606abebe06f39c9c28 (patch) | |
tree | a8b2b3e65a76429ea5171482fce7cc594851373b /keyboards/fallacy | |
parent | aeb252435d0c161ebd22bd8210765609813fc632 (diff) |
Move some led drivers to common folder (#13749)
* Move some led drivers to common folder
Diffstat (limited to 'keyboards/fallacy')
-rwxr-xr-x | keyboards/fallacy/indicators.c | 2 | ||||
-rwxr-xr-x | keyboards/fallacy/rules.mk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/fallacy/indicators.c b/keyboards/fallacy/indicators.c index 6c80f31678..08c500064d 100755 --- a/keyboards/fallacy/indicators.c +++ b/keyboards/fallacy/indicators.c @@ -15,7 +15,7 @@ */ #include "indicators.h" -#include "drivers/issi/is31fl3731-simple.h" +#include "drivers/led/issi/is31fl3731-simple.h" #include "i2c_master.h" /* Set up IS31FL3731 for use in powering indicator LEDs. Absolutely overkill for this job but it was already in the design. diff --git a/keyboards/fallacy/rules.mk b/keyboards/fallacy/rules.mk index dfc96a31b8..93e02c1695 100755 --- a/keyboards/fallacy/rules.mk +++ b/keyboards/fallacy/rules.mk @@ -24,7 +24,7 @@ AUDIO_ENABLE = no # Audio output # project specific files SRC += indicators.c \ - drivers/issi/is31fl3731-simple.c + drivers/led/issi/is31fl3731-simple.c QUANTUM_LIB_SRC += i2c_master.c LAYOUTS = alice alice_split_bs |