diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-07-11 11:04:27 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-07-11 11:04:27 +0000 |
commit | 24aaa7e2c950d96aae7d6e123b676a200b3b4ee5 (patch) | |
tree | 31a131e8f86e6df310f15c500c2f88974ea84254 /os/hal | |
parent | 28aad0e71b5cfbee332f91205fbe247b0ccc014f (diff) | |
download | ChibiOS-24aaa7e2c950d96aae7d6e123b676a200b3b4ee5.tar.gz ChibiOS-24aaa7e2c950d96aae7d6e123b676a200b3b4ee5.tar.bz2 ChibiOS-24aaa7e2c950d96aae7d6e123b676a200b3b4ee5.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5950 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal')
-rw-r--r-- | os/hal/include/usb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/include/usb.h b/os/hal/include/usb.h index b56385403..4a948a84f 100644 --- a/os/hal/include/usb.h +++ b/os/hal/include/usb.h @@ -102,7 +102,7 @@ /**
* @brief Helper macro for BCD values into descriptor strings.
*/
-#define USB_DESC_BCD(bcd) \
+#define USB_DESC_BCD(bcd) \
(uint8_t)((bcd) & 255), \
(uint8_t)(((bcd) >> 8) & 255)
|