From 5e0aa49ec61e888d50727a7e80e87626f745c119 Mon Sep 17 00:00:00 2001 From: Alexander Shishkin Date: Fri, 11 May 2012 17:25:56 +0300 Subject: usb: chipidea: use generic map/unmap routines We're one of the remaining drivers to map/unmap requests by hand. Switch to using generic gadget routines for that instead. Signed-off-by: Alexander Shishkin Signed-off-by: Greg Kroah-Hartman --- drivers/usb/chipidea/udc.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'drivers/usb/chipidea/udc.h') diff --git a/drivers/usb/chipidea/udc.h b/drivers/usb/chipidea/udc.h index e839a2b..4ff2384d 100644 --- a/drivers/usb/chipidea/udc.h +++ b/drivers/usb/chipidea/udc.h @@ -62,7 +62,6 @@ struct ci13xxx_qh { /** * struct ci13xxx_req - usb request representation * @req: request structure for gadget drivers - * @map: is the request mapped * @queue: link to QH list * @ptr: transfer descriptor for this request * @dma: dma address for the transfer descriptor @@ -71,7 +70,6 @@ struct ci13xxx_qh { */ struct ci13xxx_req { struct usb_request req; - unsigned map; struct list_head queue; struct ci13xxx_td *ptr; dma_addr_t dma; -- cgit v1.1