diff options
author | tmk <nobody@nowhere> | 2013-06-23 02:19:04 +0200 |
---|---|---|
committer | tmk <nobody@nowhere> | 2013-06-23 02:19:04 +0200 |
commit | 5a0415749d6cd6a095d9c3fbb335360ec5fa59e0 (patch) | |
tree | 7ed39e24295fbf853625a12fe273ea3ab4c7b202 /common/keyboard.c | |
parent | 9de9d719527c7a8cac71d0bc49ba1d2d4f63cf06 (diff) | |
parent | 25ad212c4adae5a27dd2d5a4e9d6bcdfc17edb1b (diff) | |
download | qmk_firmware-5a0415749d6cd6a095d9c3fbb335360ec5fa59e0.tar.gz qmk_firmware-5a0415749d6cd6a095d9c3fbb335360ec5fa59e0.tar.xz |
Merge branch 'Wraul-kmac'
Diffstat (limited to 'common/keyboard.c')
-rw-r--r-- | common/keyboard.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/keyboard.c b/common/keyboard.c index 6bc6fae6e..d1821a099 100644 --- a/common/keyboard.c +++ b/common/keyboard.c @@ -31,6 +31,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "bootmagic.h" #include "eeconfig.h" #include "mousekey.h" +#include "backlight.h" #ifdef MATRIX_HAS_GHOST @@ -65,6 +66,10 @@ void keyboard_init(void) #ifdef BOOTMAGIC_ENABLE bootmagic(); #endif + +#ifdef BACKLIGHT_ENABLE + backlight_init(); +#endif } /* |