diff options
author | QMK Bot <hello@qmk.fm> | 2020-03-26 03:10:16 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2020-03-26 03:10:16 +0000 |
commit | 9fbf17b90e9e9bf23797ef524d9dabaa2adfbad5 (patch) | |
tree | 142467b7970e28aaa4a2f5a963aebfaa5960bb2e /tmk_core/protocol/arm_atsam/usb | |
parent | 96bfce70009ac15f21e440fd3894e6c11e1b7615 (diff) |
format code according to conventions [skip ci]
Diffstat (limited to 'tmk_core/protocol/arm_atsam/usb')
-rw-r--r-- | tmk_core/protocol/arm_atsam/usb/main_usb.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tmk_core/protocol/arm_atsam/usb/main_usb.c b/tmk_core/protocol/arm_atsam/usb/main_usb.c index 24630d9492..3809e1fd02 100644 --- a/tmk_core/protocol/arm_atsam/usb/main_usb.c +++ b/tmk_core/protocol/arm_atsam/usb/main_usb.c @@ -19,7 +19,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "conf_usb.h" #include "udd.h" #ifdef RAW -#include "raw_hid.h" +# include "raw_hid.h" #endif uint8_t keyboard_protocol = 1; @@ -93,7 +93,5 @@ bool main_raw_enable(void) { void main_raw_disable(void) { main_b_raw_enable = false; } -void main_raw_receive(uint8_t *buffer, uint8_t len) { - raw_hid_receive(buffer, len); -} +void main_raw_receive(uint8_t *buffer, uint8_t len) { raw_hid_receive(buffer, len); } #endif |