diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-06-21 17:42:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-21 17:42:29 -0400 |
commit | 1a0bac8bccf0e156d2f3c5f14a7214f9677b6370 (patch) | |
tree | ca8a2a62e744a3448cfc247caab029152e2ebefb /keyboard/phantom/led.c | |
parent | 758a8c64e9ffb12cda4c78d8d1ee6a3f448901fc (diff) | |
download | firmware-1a0bac8bccf0e156d2f3c5f14a7214f9677b6370.tar.gz firmware-1a0bac8bccf0e156d2f3c5f14a7214f9677b6370.tar.bz2 firmware-1a0bac8bccf0e156d2f3c5f14a7214f9677b6370.zip |
Warning reductions (#430)
Warning reductions
Diffstat (limited to 'keyboard/phantom/led.c')
-rw-r--r-- | keyboard/phantom/led.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/keyboard/phantom/led.c b/keyboard/phantom/led.c index e45cc0964..b2459c774 100644 --- a/keyboard/phantom/led.c +++ b/keyboard/phantom/led.c @@ -19,8 +19,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "stdint.h" #include "led.h" - -void led_init_ports() { +void led_init(void) { // * Set our LED pins as output DDRB |= (1<<6); DDRB |= (1<<7); |