Browse Source

Fix compilation warning for the DZ60RGB/DZ65RGB when RGB matrix is disabled (#9791)

pull/9818/head
Michael Krasnitski 3 years ago
committed by GitHub
parent
commit
d7a4b14bc6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions
  1. +1
    -1
      keyboards/dztech/dz60rgb/dz60rgb.c
  2. +1
    -1
      keyboards/dztech/dz60rgb_ansi/dz60rgb_ansi.c
  3. +1
    -1
      keyboards/dztech/dz60rgb_wkl/dz60rgb_wkl.c
  4. +1
    -1
      keyboards/dztech/dz65rgb/dz65rgb.c

+ 1
- 1
keyboards/dztech/dz60rgb/dz60rgb.c View File

@ -92,7 +92,6 @@ led_config_t g_led_config = {
1, 1, 1, 1, 1, 4, 1, 1, 1
}
};
#endif
void suspend_power_down_kb(void) {
rgb_matrix_set_suspend_state(true);
@ -110,3 +109,4 @@ void rgb_matrix_indicators_user(void) {
rgb_matrix_set_color(40, 0xFF, 0xFF, 0xFF);
}
}
#endif

+ 1
- 1
keyboards/dztech/dz60rgb_ansi/dz60rgb_ansi.c View File

@ -90,7 +90,6 @@ led_config_t g_led_config = {
1, 1, 1, 1, 4, 1, 1, 1
}
};
#endif
void suspend_power_down_kb(void) {
rgb_matrix_set_suspend_state(true);
@ -108,3 +107,4 @@ void rgb_matrix_indicators_user(void) {
rgb_matrix_set_color(40, 0xFF, 0xFF, 0xFF);
}
}
#endif

+ 1
- 1
keyboards/dztech/dz60rgb_wkl/dz60rgb_wkl.c View File

@ -91,7 +91,6 @@ led_config_t g_led_config = {
1, 1, 1, 4, 1, 1, 1
}
};
#endif
void suspend_power_down_kb(void) {
rgb_matrix_set_suspend_state(true);
@ -109,3 +108,4 @@ void rgb_matrix_indicators_user(void) {
rgb_matrix_set_color(41, 0xFF, 0xFF, 0xFF);
}
}
#endif

+ 1
- 1
keyboards/dztech/dz65rgb/dz65rgb.c View File

@ -97,7 +97,6 @@ led_config_t g_led_config = {
1, 1, 1, 4, 1, 1, 1, 1, 1, 1
}
};
#endif
void suspend_power_down_kb(void) {
rgb_matrix_set_suspend_state(true);
@ -115,3 +114,4 @@ void rgb_matrix_indicators_user(void) {
rgb_matrix_set_color(30, 0xFF, 0xFF, 0xFF);
}
}
#endif

Loading…
Cancel
Save