summaryrefslogtreecommitdiff
path: root/keyboards
diff options
context:
space:
mode:
authorTerryMathews <terry@terrymathews.net>2016-07-08 03:40:05 -0400
committerTerryMathews <terry@terrymathews.net>2016-07-08 03:40:05 -0400
commit564c743aa025c094f9c31ba2049aa50e15d76ab7 (patch)
treeb218c0f58a852bde752a66100e4e46da5ee3e2b3 /keyboards
parentf7a86822266603b8ffd21e9f89ec1de8d4950791 (diff)
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')
-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 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);