Changeset 92a7b296 in mainline
- Timestamp:
- 2018-01-25T02:05:57Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4172db4a
- Parents:
- 3dd80f8
- git-author:
- Ondřej Hlavatý <aearsis@…> (2018-01-24 21:57:05)
- git-committer:
- Ondřej Hlavatý <aearsis@…> (2018-01-25 02:05:57)
- Location:
- uspace/lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/include/usb/usb.h
r3dd80f8 r92a7b296 152 152 } 153 153 154 static inline bool usb_transfer_type_is_valid(usb_transfer_type_t type)155 {156 return (type >= 0) && (type < USB_TRANSFER_COUNT);157 }158 159 static inline bool usb_direction_is_valid(usb_direction_t dir)160 {161 return (dir >= 0) && (dir < USB_DIRECTION_COUNT);162 }163 164 154 /** USB packet identifier. */ 165 155 typedef enum { -
uspace/lib/usbhost/src/bus.c
r3dd80f8 r92a7b296 582 582 */ 583 583 assert(usb_target_is_valid(&target)); 584 assert(usb_direction_is_valid(direction));585 584 assert(direction != USB_DIRECTION_BOTH); 586 585 assert(size == 0 || data != NULL);
Note:
See TracChangeset
for help on using the changeset viewer.