Skip to content

Commit

Permalink
clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
carlossless committed Apr 28, 2024
1 parent 3148a28 commit c1ddb14
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 12 deletions.
4 changes: 1 addition & 3 deletions src/keyboards/example/smatrix.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,4 @@ uint8_t matrix_scan_col(uint8_t col)
return 0;
}

void matrix_post_scan()
{
}
void matrix_post_scan() {}
4 changes: 2 additions & 2 deletions src/platform/sh68f90a/usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -866,11 +866,11 @@ static void usb_get_descriptor_handler(__xdata struct usb_req_setup *req)
if (iface_index == 0) {
length = sizeof(hid_report_desc_keyboard);
APPEND(&hid_report_desc_keyboard, length);
addr = scratch;
addr = scratch;
} else if (iface_index == 1) {
length = sizeof(hid_report_desc_extra);
APPEND(&hid_report_desc_extra, length);
addr = scratch;
addr = scratch;
} else {
STALL_EP0();
return;
Expand Down
4 changes: 1 addition & 3 deletions src/user/indicators_post_update.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#include "indicators.h"

void indicators_post_update()
{
}
void indicators_post_update() {}
4 changes: 1 addition & 3 deletions src/user/indicators_pre_update.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#include "indicators.h"

void indicators_pre_update()
{
}
void indicators_pre_update() {}
2 changes: 1 addition & 1 deletion src/user/matrix.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ void matrix_pre_scan(uint8_t col);
uint8_t matrix_scan_col(uint8_t col);
void matrix_post_scan();

#endif
#endif

0 comments on commit c1ddb14

Please sign in to comment.