Remove check for EH define (#7525)

Its use in lets_split_eh was factored out in https://github.com/qmk/qmk_firmware/pull/6411
This commit is contained in:
Danny
2019-12-02 12:10:09 -05:00
committed by Joel Challis
parent ce5678b819
commit bf962821b3
5 changed files with 5 additions and 5 deletions

View File

@@ -54,7 +54,7 @@ bool is_keyboard_master(void)
}
static void keyboard_master_setup(void) {
#if defined(USE_I2C) || defined(EH)
#if defined(USE_I2C)
#ifdef SSD1306OLED
matrix_master_OLED_init ();
#endif

View File

@@ -18,7 +18,7 @@
extern backlight_config_t backlight_config;
#endif
#if defined(USE_I2C) || defined(EH)
#if defined(USE_I2C)
#include "i2c.h"