Changeset 5cbccd4 in mainline for uspace/lib
- Timestamp:
- 2017-06-15T17:26:44Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 48197c1
- Parents:
- f4eb6c93
- Location:
- uspace/lib
- Files:
-
- 3 edited
-
c/include/byteorder.h (modified) (1 diff)
-
pcm/src/format.c (modified) (1 diff)
-
usbhost/src/ddf_helpers.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/byteorder.h
rf4eb6c93 r5cbccd4 85 85 #define ntohl(n) uint32_t_be2host((n)) 86 86 87 #define uint8_t_be2host(n) (n) 88 #define uint8_t_le2host(n) (n) 89 #define host2uint8_t_be(n) (n) 90 #define host2uint8_t_le(n) (n) 91 87 92 static inline uint64_t uint64_t_byteorder_swap(uint64_t n) 88 93 { -
uspace/lib/pcm/src/format.c
rf4eb6c93 r5cbccd4 41 41 42 42 #include "format.h" 43 44 #define uint8_t_le2host(x) (x)45 #define host2uint8_t_le(x) (x)46 #define uint8_t_be2host(x) (x)47 #define host2uint8_t_be(x) (x)48 43 49 44 #define int8_t_le2host(x) (x) -
uspace/lib/usbhost/src/ddf_helpers.c
rf4eb6c93 r5cbccd4 854 854 [USB_SPEED_HIGH] = { .bw = BANDWIDTH_AVAILABLE_USB11, 855 855 .bw_count = bandwidth_count_usb11 }, 856 [USB_SPEED_SUPER] = { .bw = BANDWIDTH_AVAILABLE_USB11, 857 .bw_count = bandwidth_count_usb11 }, 856 858 }; 857 859
Note:
See TracChangeset
for help on using the changeset viewer.
