]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Fix a function mismatch that was causing LEDs to not properly initialize
authorTerryMathews <terry@terrymathews.net>
Fri, 8 Jul 2016 07:40:05 +0000 (03:40 -0400)
committerTerryMathews <terry@terrymathews.net>
Fri, 8 Jul 2016 07:40:05 +0000 (03:40 -0400)
See #430. Name of function being called at init was updated to
led_init_ports(), but the call itself wasn't renamed.

keyboards/phantom/led.c

index b2459c7743395a9d3eeb2497a6ee024b55622772..69dba7d40e75e210e4a76a33c784174d59c403e8 100644 (file)
@@ -19,7 +19,7 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #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);