summaryrefslogtreecommitdiff
path: root/shared-module/usb_hid/Device.h
diff options
context:
space:
mode:
Diffstat (limited to 'shared-module/usb_hid/Device.h')
-rw-r--r--shared-module/usb_hid/Device.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/shared-module/usb_hid/Device.h b/shared-module/usb_hid/Device.h
index 93c3518b4..bf4e9d9ad 100644
--- a/shared-module/usb_hid/Device.h
+++ b/shared-module/usb_hid/Device.h
@@ -33,17 +33,17 @@
#include "py/obj.h"
#ifdef __cplusplus
- extern "C" {
+extern "C" {
#endif
typedef struct {
mp_obj_base_t base;
- uint8_t* report_buffer;
+ uint8_t *report_buffer;
uint8_t report_id;
uint8_t report_length;
uint8_t usage_page;
uint8_t usage;
- uint8_t* out_report_buffer;
+ uint8_t *out_report_buffer;
uint8_t out_report_length;
} usb_hid_device_obj_t;
@@ -51,7 +51,7 @@ typedef struct {
extern usb_hid_device_obj_t usb_hid_devices[];
#ifdef __cplusplus
- }
+}
#endif
#endif /* SHARED_MODULE_USB_HID_DEVICE_H */