dm: usb: Adjust usb_storage to work with sandbox
With a few tweaks we can compile this code with sandbox and enable testing of the USB storage layer. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Marek Vasut <marex@denx.de>
This commit is contained in:
parent
84073b6f3c
commit
051081323f
@ -34,6 +34,7 @@
|
|||||||
#include <common.h>
|
#include <common.h>
|
||||||
#include <command.h>
|
#include <command.h>
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
|
#include <mapmem.h>
|
||||||
#include <asm/byteorder.h>
|
#include <asm/byteorder.h>
|
||||||
#include <asm/processor.h>
|
#include <asm/processor.h>
|
||||||
|
|
||||||
@ -306,8 +307,9 @@ static int us_one_transfer(struct us_data *us, int pipe, char *buf, int length)
|
|||||||
/* set up the transfer loop */
|
/* set up the transfer loop */
|
||||||
do {
|
do {
|
||||||
/* transfer the data */
|
/* transfer the data */
|
||||||
debug("Bulk xfer %p(%d) try #%d\n",
|
debug("Bulk xfer 0x%lx(%d) try #%d\n",
|
||||||
buf, this_xfer, 11 - maxtry);
|
(ulong)map_to_sysmem(buf), this_xfer,
|
||||||
|
11 - maxtry);
|
||||||
result = usb_bulk_msg(us->pusb_dev, pipe, buf,
|
result = usb_bulk_msg(us->pusb_dev, pipe, buf,
|
||||||
this_xfer, &partial,
|
this_xfer, &partial,
|
||||||
USB_CNTL_TIMEOUT * 5);
|
USB_CNTL_TIMEOUT * 5);
|
||||||
|
Loading…
Reference in New Issue
Block a user