Skip to content

Commit

Permalink
Fix up issues shown by clang-format of vusb (qmk#15004)
Browse files Browse the repository at this point in the history
  • Loading branch information
zvecr authored and ptrxyz committed Nov 6, 2021
1 parent 17f6e88 commit c171c43
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tmk_core/protocol/vusb/vusb.c
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,7 @@ void send_digitizer(report_digitizer_t *report) {
#ifdef DIGITIZER_ENABLE
if (usbInterruptIsReadyShared()) {
usbSetInterruptShared((void *)report, sizeof(report_digitizer_t));
}
#endif
}

Expand Down Expand Up @@ -569,7 +570,7 @@ const PROGMEM uchar shared_hid_report[] = {
0x09, 0x31, // Usage (Y)
0x81, 0x02, // Input (Data, Variable, Absolute)
0xC0, // End Collection
0xC0 // End Collection
0xC0, // End Collection
#endif

#ifdef PROGRAMMABLE_BUTTON_ENABLE
Expand All @@ -589,7 +590,7 @@ const PROGMEM uchar shared_hid_report[] = {
0x75, 0x01, // Report Size (1)
0x81, 0x02, // Input (Data, Variable, Absolute)
0xC0, // End Collection
0xC0 // End Collection
0xC0, // End Collection
#endif

#ifdef SHARED_EP_ENABLE
Expand Down

0 comments on commit c171c43

Please sign in to comment.