aboutsummaryrefslogtreecommitdiff
path: root/include/usb/hid.h
diff options
context:
space:
mode:
authorUwe Hermann2010-12-29 17:28:06 +0100
committerUwe Hermann2010-12-29 17:28:06 +0100
commitc39eb69e4d923c9c5fa8be53252ee0ffd15dffb9 (patch)
treee4f194d9c1720c4a1318c4f73e9de7dfa7da5db8 /include/usb/hid.h
parent6a16711bee34e0445a95a9cbffc17fdd1d580950 (diff)
Replace uint8_t with u8 et al, fix whitespace.
Diffstat (limited to 'include/usb/hid.h')
-rw-r--r--include/usb/hid.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/usb/hid.h b/include/usb/hid.h
index 6804cab..1807a51 100644
--- a/include/usb/hid.h
+++ b/include/usb/hid.h
@@ -28,11 +28,11 @@
#define USB_DT_REPORT 0x22
struct usb_hid_descriptor {
- uint8_t bLength;
- uint8_t bDescriptorType;
- uint16_t bcdHID;
- uint8_t bCountryCode;
- uint8_t bNumDescriptors;
+ u8 bLength;
+ u8 bDescriptorType;
+ u16 bcdHID;
+ u8 bCountryCode;
+ u8 bNumDescriptors;
} __attribute__((packed));
#endif