diff options
author | Takeshi ISHII <2170248+mtei@users.noreply.github.com> | 2018-11-28 00:22:47 +0900 |
---|---|---|
committer | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2018-11-27 07:22:47 -0800 |
commit | a054b5a06c00cf148fa416fae8f5a56586a10876 (patch) | |
tree | 3ee2c44ce12252b4b20e27772a6e629c1985a783 /keyboards | |
parent | 952a30ef345e05051f62fa39960f88475817821d (diff) |
Fix Helix ws2812.c listed more than once warning. (#4499)
Remove `SRC += ws2812.c` from helix/rev2/rules.mk and helix/pico/rules.mk.
Because it will be added in common_features.mk.
Diffstat (limited to 'keyboards')
-rw-r--r-- | keyboards/helix/pico/rules.mk | 5 | ||||
-rw-r--r-- | keyboards/helix/rev2/rules.mk | 1 |
2 files changed, 2 insertions, 4 deletions
diff --git a/keyboards/helix/pico/rules.mk b/keyboards/helix/pico/rules.mk index c994ac8dea..75bf0a5ef8 100644 --- a/keyboards/helix/pico/rules.mk +++ b/keyboards/helix/pico/rules.mk @@ -1,3 +1,2 @@ -SRC += pico/matrix.c \ - pico/split_util.c \ - ws2812.c +SRC += pico/matrix.c +SRC += pico/split_util.c diff --git a/keyboards/helix/rev2/rules.mk b/keyboards/helix/rev2/rules.mk index 4ea623c436..5582a0f9c4 100644 --- a/keyboards/helix/rev2/rules.mk +++ b/keyboards/helix/rev2/rules.mk @@ -1,4 +1,3 @@ SRC += rev2/matrix.c SRC += rev2/split_util.c SRC += rev2/split_scomm.c -SRC += ws2812.c |