diff options
Diffstat (limited to 'drivers/usb/renesas_usbhs/fifo.h')
| -rw-r--r-- | drivers/usb/renesas_usbhs/fifo.h | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/usb/renesas_usbhs/fifo.h b/drivers/usb/renesas_usbhs/fifo.h index 32a7b246b28..f68609c0f48 100644 --- a/drivers/usb/renesas_usbhs/fifo.h +++ b/drivers/usb/renesas_usbhs/fifo.h @@ -59,6 +59,7 @@ struct usbhs_pkt {  	int trans;  	int actual;  	int zero; +	int sequence;  };  struct usbhs_pkt_handle { @@ -95,7 +96,7 @@ void usbhs_pkt_init(struct usbhs_pkt *pkt);  void usbhs_pkt_push(struct usbhs_pipe *pipe, struct usbhs_pkt *pkt,  		    void (*done)(struct usbhs_priv *priv,  				 struct usbhs_pkt *pkt), -		    void *buf, int len, int zero); +		    void *buf, int len, int zero, int sequence);  struct usbhs_pkt *usbhs_pkt_pop(struct usbhs_pipe *pipe, struct usbhs_pkt *pkt);  void usbhs_pkt_start(struct usbhs_pipe *pipe);  |