diff options
author | TerryMathews <terry@terrymathews.net> | 2016-07-08 03:40:05 -0400 |
---|---|---|
committer | TerryMathews <terry@terrymathews.net> | 2016-07-08 03:40:05 -0400 |
commit | 564c743aa025c094f9c31ba2049aa50e15d76ab7 (patch) | |
tree | b218c0f58a852bde752a66100e4e46da5ee3e2b3 | |
parent | f7a86822266603b8ffd21e9f89ec1de8d4950791 (diff) | |
download | qmk_firmware-564c743aa025c094f9c31ba2049aa50e15d76ab7.tar.gz qmk_firmware-564c743aa025c094f9c31ba2049aa50e15d76ab7.zip |
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.
-rw-r--r-- | keyboards/phantom/led.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/phantom/led.c b/keyboards/phantom/led.c index b2459c7743..69dba7d40e 100644 --- a/keyboards/phantom/led.c +++ b/keyboards/phantom/led.c @@ -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); |