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 /keyboards/phantom | |
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.
Diffstat (limited to 'keyboards/phantom')
-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 b2459c774..69dba7d40 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/>. | |||
19 | #include "stdint.h" | 19 | #include "stdint.h" |
20 | #include "led.h" | 20 | #include "led.h" |
21 | 21 | ||
22 | void led_init(void) { | 22 | void led_init_ports(void) { |
23 | // * Set our LED pins as output | 23 | // * Set our LED pins as output |
24 | DDRB |= (1<<6); | 24 | DDRB |= (1<<6); |
25 | DDRB |= (1<<7); | 25 | DDRB |= (1<<7); |