Changes in / [3185692:a80849c] in mainline
- Location:
- uspace
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbhub/usbhub_private.h
r3185692 ra80849c 162 162 } 163 163 164 /**165 * @brief create uint8_t array with serialized descriptor166 *167 * @param descriptor168 * @return newly created serializd descriptor pointer169 */170 void * usb_serialize_hub_descriptor(usb_hub_descriptor_t * descriptor);171 172 /**173 * @brief create deserialized desriptor structure out of serialized descriptor174 *175 * The serialized descriptor must be proper usb hub descriptor,176 * otherwise an eerror might occur.177 *178 * @param sdescriptor serialized descriptor179 * @return newly created deserialized descriptor pointer180 */181 usb_hub_descriptor_t * usb_deserialize_hub_desriptor(void * sdescriptor);182 164 183 165 -
uspace/lib/usb/include/usb/classes/hub.h
r3185692 ra80849c 196 196 extern size_t USB_HUB_MAX_DESCRIPTOR_SIZE; 197 197 198 /** 199 * @brief create uint8_t array with serialized descriptor 200 * 201 * @param descriptor 202 */ 203 void * usb_serialize_hub_descriptor(usb_hub_descriptor_t * descriptor); 204 205 /** 206 * @brief create deserialized desriptor structure out of serialized descriptor 207 * 208 * The serialized descriptor must be proper usb hub descriptor, otherwise an eerror might occur. 209 * 210 * @param sdescriptor serialized descriptor 211 */ 212 usb_hub_descriptor_t * usb_deserialize_hub_desriptor(void * sdescriptor); 198 213 199 214
Note:
See TracChangeset
for help on using the changeset viewer.