format code according to conventions [skip ci]

This commit is contained in:
QMK Bot 2020-03-26 03:10:16 +00:00
parent 96bfce7000
commit 9fbf17b90e
2 changed files with 3 additions and 7 deletions

View File

@ -207,9 +207,7 @@ void main_subtask_usb_extra_device(void) {
}
#ifdef RAW_ENABLE
void main_subtask_raw(void) {
udi_hid_raw_receive_report();
}
void main_subtask_raw(void) { udi_hid_raw_receive_report(); }
#endif
void main_subtasks(void) {

View File

@ -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