summaryrefslogtreecommitdiffstats
path: root/keyboard/atomic/led.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboard/atomic/led.c')
-rw-r--r--keyboard/atomic/led.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/keyboard/atomic/led.c b/keyboard/atomic/led.c
index 7c9851080..2d52fbf1c 100644
--- a/keyboard/atomic/led.c
+++ b/keyboard/atomic/led.c
@@ -22,13 +22,4 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
void led_set(uint8_t usb_led)
{
- if (usb_led & (1<<USB_LED_FUNCTION)) {
- // Output high.
- DDRF |= (1<<0);
- PORTF |= (1<<0);
- } else {
- // Output low.
- DDRF &= ~(1<<0);
- PORTF &= ~(1<<0);
- }
}