From b56899976924043a9563c12987218abd78baf13d Mon Sep 17 00:00:00 2001
From: fauxpark <fauxpark@gmail.com>
Date: Fri, 24 Jan 2020 14:24:10 +1100
Subject: Fix LED configuration for PS2AVRGB boards (#7989)

* Fix LED configuration for PS2AVRGB boards

* Undo backlight on state changes
---
 keyboards/panc60/panc60.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

(limited to 'keyboards/panc60')

diff --git a/keyboards/panc60/panc60.c b/keyboards/panc60/panc60.c
index a200b25878..d7ff52963c 100644
--- a/keyboards/panc60/panc60.c
+++ b/keyboards/panc60/panc60.c
@@ -23,12 +23,11 @@ void keyboard_pre_init_kb(void) {
 
 void led_init_ports(void) {
     setPinOutput(D1);
-    writePinHigh(D1);
 }
 
 bool led_update_kb(led_t led_state) {
     if (led_update_user(led_state)) {
-        writePin(D1, !led_state.caps_lock);
+        writePin(D1, led_state.caps_lock);
     }
     return true;
 }
-- 
cgit v1.2.3