summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2020-03-22 06:19:01 +1100
committerGitHub <noreply@github.com>2020-03-22 06:19:01 +1100
commitf4799481cddcc8713ad3bfb80e844acc0981af69 (patch)
tree09eafee21212283ff1fcfa60e9a0004a21c9061f
parent675b153525473be15300c9f0250619dcec883297 (diff)
Fix formatting for report.h (#8512)0.8.61
-rw-r--r--tmk_core/common/report.h20
1 files changed, 16 insertions, 4 deletions
diff --git a/tmk_core/common/report.h b/tmk_core/common/report.h
index 319ba4aabf..61ef6ea66c 100644
--- a/tmk_core/common/report.h
+++ b/tmk_core/common/report.h
@@ -21,13 +21,25 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <stdbool.h>
#include "keycode.h"
+// clang-format off
+
/* HID report IDs */
-enum hid_report_ids { REPORT_ID_KEYBOARD = 1, REPORT_ID_MOUSE, REPORT_ID_SYSTEM, REPORT_ID_CONSUMER, REPORT_ID_NKRO };
+enum hid_report_ids {
+ REPORT_ID_KEYBOARD = 1,
+ REPORT_ID_MOUSE,
+ REPORT_ID_SYSTEM,
+ REPORT_ID_CONSUMER,
+ REPORT_ID_NKRO
+};
/* Mouse buttons */
-enum mouse_buttons { MOUSE_BTN1 = (1 << 0), MOUSE_BTN2 = (1 << 1), MOUSE_BTN3 = (1 << 2), MOUSE_BTN4 = (1 << 3), MOUSE_BTN5 = (1 << 4) };
-
-// clang-format off
+enum mouse_buttons {
+ MOUSE_BTN1 = (1 << 0),
+ MOUSE_BTN2 = (1 << 1),
+ MOUSE_BTN3 = (1 << 2),
+ MOUSE_BTN4 = (1 << 3),
+ MOUSE_BTN5 = (1 << 4)
+};
/* Consumer Page (0x0C)
*