summaryrefslogtreecommitdiffstats
path: root/keyboards/phantom
diff options
context:
space:
mode:
authorTerryMathews <terry@terrymathews.net>2016-07-08 09:40:05 +0200
committerTerryMathews <terry@terrymathews.net>2016-07-08 09:40:05 +0200
commit564c743aa025c094f9c31ba2049aa50e15d76ab7 (patch)
treeb218c0f58a852bde752a66100e4e46da5ee3e2b3 /keyboards/phantom
parentf7a86822266603b8ffd21e9f89ec1de8d4950791 (diff)
downloadqmk_firmware-564c743aa025c094f9c31ba2049aa50e15d76ab7.tar.gz
qmk_firmware-564c743aa025c094f9c31ba2049aa50e15d76ab7.tar.xz
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.c2
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/>.
#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);