diff options
author | Konstantin Đorđević <vomindoraan@gmail.com> | 2020-04-20 00:56:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-19 23:56:48 +0100 |
commit | 2d39a9dcdbdef1202d890a81505e7d33fe04cde0 (patch) | |
tree | 2fe4d5635a26cc21053afb13bb6dd99c362c5c33 /keyboards/dztech/dz65rgb | |
parent | 33bf4863f58e908f4bff7e8d729341f0fe7c4558 (diff) | |
download | qmk_firmware-2d39a9dcdbdef1202d890a81505e7d33fe04cde0.tar.gz qmk_firmware-2d39a9dcdbdef1202d890a81505e7d33fe04cde0.zip |
Remove no-longer-necessary LTO checks from keyboards' config.h files (#8773)
* Remove no-longer-necessary LTO checks from keyboards' config.h files
* Remove unnecessary LTO check in @danielo515's Ergodox EZ keymap
* Remove unnecessary USE_Link_Time_Optimization checks from keyboards' config.h files
Note: DISABLE_LEADER doesn't seem to be used anywhere
Diffstat (limited to 'keyboards/dztech/dz65rgb')
-rw-r--r-- | keyboards/dztech/dz65rgb/v1/config.h | 6 | ||||
-rw-r--r-- | keyboards/dztech/dz65rgb/v2/config.h | 6 |
2 files changed, 4 insertions, 8 deletions
diff --git a/keyboards/dztech/dz65rgb/v1/config.h b/keyboards/dztech/dz65rgb/v1/config.h index bf700a2384..9cd7d293ce 100644 --- a/keyboards/dztech/dz65rgb/v1/config.h +++ b/keyboards/dztech/dz65rgb/v1/config.h @@ -29,10 +29,8 @@ #define DIODE_DIRECTION COL2ROW /* disable these deprecated features by default */ -#ifndef LINK_TIME_OPTIMIZATION_ENABLE -# define NO_ACTION_MACRO -# define NO_ACTION_FUNCTION -#endif +#define NO_ACTION_MACRO +#define NO_ACTION_FUNCTION #ifdef RGB_MATRIX_ENABLE # define RGB_MATRIX_LED_PROCESS_LIMIT 4 diff --git a/keyboards/dztech/dz65rgb/v2/config.h b/keyboards/dztech/dz65rgb/v2/config.h index 6a55f87667..83cf0110ab 100644 --- a/keyboards/dztech/dz65rgb/v2/config.h +++ b/keyboards/dztech/dz65rgb/v2/config.h @@ -29,10 +29,8 @@ #define DIODE_DIRECTION COL2ROW /* disable these deprecated features by default */ -#ifndef LINK_TIME_OPTIMIZATION_ENABLE -# define NO_ACTION_MACRO -# define NO_ACTION_FUNCTION -#endif +#define NO_ACTION_MACRO +#define NO_ACTION_FUNCTION #ifdef RGB_MATRIX_ENABLE # define RGB_MATRIX_LED_PROCESS_LIMIT 4 |