* Felipe Balbi | 2011-12-20 18:37:08 [+0200]: >diff --git a/drivers/usb/renesas_usbhs/mod_gadget.c b/drivers/usb/renesas_usbhs/mod_gadget.c >index 528691d5f..685c434 100644 >--- a/drivers/usb/renesas_usbhs/mod_gadget.c >+++ b/drivers/usb/renesas_usbhs/mod_gadget.c >@@ -165,69 +165,32 @@ static void usbhsg_queue_push(struct usbhsg_uep *uep, > /* > * dma map/unmap > */ >-static int usbhsg_dma_map(struct device *dev, >- struct usbhs_pkt *pkt, >- enum dma_data_direction dir) >-{ >- struct usbhsg_request *ureq = usbhsg_pkt_to_ureq(pkt); >- struct usb_request *req = &ureq->req; >- >- if (pkt->dma != DMA_ADDR_INVALID) { >- dev_err(dev, "dma is already mapped\n"); >- return -EIO; >- } >- >- if (req->dma == DMA_ADDR_INVALID) { >- pkt->dma = dma_map_single(dev, pkt->buf, pkt->length, dir); >- } else { >- dma_sync_single_for_device(dev, req->dma, req->length, dir); >- pkt->dma = req->dma; >- } >- >- if (dma_mapping_error(dev, pkt->dma)) { >- dev_err(dev, "dma mapping error %llx\n", (u64)pkt->dma); >- return -EIO; >- } >- >- return 0; >-} >- >-static int usbhsg_dma_unmap(struct device *dev, >- struct usbhs_pkt *pkt, >- enum dma_data_direction dir) >+static int usbhsg_dma_map_ctrl(struct usbhs_pkt *pkt, int map) > { > struct usbhsg_request *ureq = usbhsg_pkt_to_ureq(pkt); > struct usb_request *req = &ureq->req; >- >- if (pkt->dma == DMA_ADDR_INVALID) { >- dev_err(dev, "dma is not mapped\n"); >- return -EIO; >- } >- >- if (req->dma == DMA_ADDR_INVALID) >- dma_unmap_single(dev, pkt->dma, pkt->length, dir); >- else >- dma_sync_single_for_cpu(dev, req->dma, req->length, dir); >- >- pkt->dma = DMA_ADDR_INVALID; >- >- return 0; >-} >- >-static int usbhsg_dma_map_ctrl(struct usbhs_pkt *pkt, int map) >-{ > struct usbhs_pipe *pipe = pkt->pipe; > struct usbhsg_uep *uep = usbhsg_pipe_to_uep(pipe); > struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep); >- struct device *dev = usbhsg_gpriv_to_dev(gpriv); > enum dma_data_direction dir; >+ int ret = 0; > >- dir = usbhs_pipe_is_dir_in(pipe) ? DMA_FROM_DEVICE : DMA_TO_DEVICE; >+ dir = usbhs_pipe_is_dir_in(pipe); > >- if (map) >- return usbhsg_dma_map(dev, pkt, dir); >- else >- return usbhsg_dma_unmap(dev, pkt, dir); >+ if (map) { >+ /* it can not use scatter/gather */ >+ WARN_ON(req->num_sgs); This does not matter. Could the mapping function do the right thing? UASP provides a contigues buffer atm. This can be improved but it does not explode :) >+ >+ ret = usb_gadget_map_request(&gpriv->gadget, req, dir); >+ if (ret < 0) >+ return ret; >+ >+ pkt->dma = req->dma; You could remove pkt->dma whilete here Sebastian -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html