} usb_host_usage_type_e;
/**
+ * @ingroup CAPI_USB_HOST_MODULE
* @brief Enumeration of error codes reported by USB host API.
* @since_tizen 3.0
*/
* @brief Gets vendor id.
* @since_tizen 3.0
* @param[in] dev A device
- * @param[out] vendor_id Vendor id of @dev
+ * @param[out] vendor_id Vendor id of @a dev
* @return 0 on success, otherwise a negative error value
* @retval #USB_HOST_ERROR_NONE Successful
* @retval #USB_HOST_ERROR_NOT_SUPPORTED Not supported
* Remember to call usb_host_release_interface() when communication
* with the device is finished.
* @since_tizen 3.0
- * @param[in] interface_number The bInterfaceNumber of interface to claim
+ * @param[in] interface The bInterfaceNumber of interface to claim
* @param[in] force Set to true to auto detach kernel driver, set to false to not detach it
* @return 0 on success, otherwise a negative error value
* @retval #USB_HOST_ERROR_NONE Successful
* @details Releases interface previously claimed by usb_host_claim_interface().
* This is a blocking function.
* @since_tizen 3.0
- * @param[in] interface_number The bInterfaceNumber of interface to release
+ * @param[in] interface The bInterfaceNumber of interface to release
* @return 0 on success, otherwise a negative error value
* @retval #USB_HOST_ERROR_NONE Successful
* @retval #USB_HOST_ERROR_NOT_FOUND Interface was not claimed
* @details Get a USB endpoint from interface by its index.
* @since_tizen 3.0
* @param[in] interface Interface handle
- * @param[in] config_index index of endpoint to retrieve (counting from 0)
+ * @param[in] ep_index index of endpoint to retrieve (counting from 0)
* @param[out] ep Endpoint handle
* @remarks @a ep handle is no longer valid when config will be destroyed. There is no need to destroy it,
* it is done automatically when the configuration is destroyed.
* @brief Gets string describing an interface.
* @since_tizen 3.0
* @param[in] interface An interface
- * @param[in/out] length Data buffer size/how much was actually used
+ * @param[in, out] length Data buffer size/how much was actually used
* @param[out] data Buffer to store string
* @return 0 on success, otherwise a negative error value
* @retval #USB_HOST_ERROR_NONE Successful
* @since_tizen 3.0
* @remarks The wValue, wIndex and wLength fields values should be given in host-endian
* byte order.
- * @param[in] handle Device handle
+ * @param[in] dev Device handle
* @param[in] bm_request_type bmRequestType type field for the setup packet
* @param[in] b_request bRequest field for the setup packet
* @param[in] w_value wValue field for the setup packet