Skip to content

Commit

Permalink
qmk cformat on develop (qmk#9501)
Browse files Browse the repository at this point in the history
  • Loading branch information
tzarc authored and drashna committed Sep 30, 2020
1 parent ce09c5c commit 0f599bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions tmk_core/protocol/chibios/usb_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -847,9 +847,7 @@ int8_t sendchar(uint8_t c) {
}
#endif /* CONSOLE_ENABLE */

void _putchar(char character) {
sendchar(character);
}
void _putchar(char character) { sendchar(character); }

#ifdef RAW_ENABLE
void raw_hid_send(uint8_t *data, uint8_t length) {
Expand Down
4 changes: 2 additions & 2 deletions tmk_core/protocol/lufa/lufa.c
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ static void send_keyboard(report_keyboard_t *report) {
uint8_t timeout = 255;

#ifdef BLUETOOTH_ENABLE
uint8_t where = where_to_send();
uint8_t where = where_to_send();

if (where == OUTPUT_BLUETOOTH || where == OUTPUT_USB_AND_BT) {
# ifdef MODULE_ADAFRUIT_BLE
Expand Down Expand Up @@ -733,7 +733,7 @@ static void send_mouse(report_mouse_t *report) {
uint8_t timeout = 255;

# ifdef BLUETOOTH_ENABLE
uint8_t where = where_to_send();
uint8_t where = where_to_send();

if (where == OUTPUT_BLUETOOTH || where == OUTPUT_USB_AND_BT) {
# ifdef MODULE_ADAFRUIT_BLE
Expand Down

0 comments on commit 0f599bb

Please sign in to comment.