From: TerryMathews Date: Fri, 8 Jul 2016 07:40:05 +0000 (-0400) Subject: Fix a function mismatch that was causing LEDs to not properly initialize X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=564c743aa025c094f9c31ba2049aa50e15d76ab7;p=qmk_firmware.git Fix a function mismatch that was causing LEDs to not properly initialize See #430. Name of function being called at init was updated to led_init_ports(), but the call itself wasn't renamed. --- diff --git a/keyboards/phantom/led.c b/keyboards/phantom/led.c index b2459c774..69dba7d40 100644 --- a/keyboards/phantom/led.c +++ b/keyboards/phantom/led.c @@ -19,7 +19,7 @@ along with this program. If not, see . #include "stdint.h" #include "led.h" -void led_init(void) { +void led_init_ports(void) { // * Set our LED pins as output DDRB |= (1<<6); DDRB |= (1<<7);