aboutsummaryrefslogtreecommitdiff
path: root/keyboard/phantom/led.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboard/phantom/led.c')
-rw-r--r--keyboard/phantom/led.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboard/phantom/led.c b/keyboard/phantom/led.c
index f4e9108f0..41582b6aa 100644
--- a/keyboard/phantom/led.c
+++ b/keyboard/phantom/led.c
@@ -37,7 +37,7 @@ void led_set(uint8_t usb_led)
37 if (usb_led & (1<<USB_LED_SCROLL_LOCK)) 37 if (usb_led & (1<<USB_LED_SCROLL_LOCK))
38 { 38 {
39 // Output high. 39 // Output high.
40 DDRB &= ~(1<<7); 40 DDRB |= (1<<7);
41 PORTB |= (1<<7); 41 PORTB |= (1<<7);
42 } 42 }
43 else 43 else