aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/renesas_usbhs/pipe.c
diff options
context:
space:
mode:
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>2011-10-11 01:02:45 -0400
committerFelipe Balbi <balbi@ti.com>2011-10-13 13:41:40 -0400
commit0deb3e77025688e0650e1af672d3e42e15cd8916 (patch)
tree34f5c35ce85b62e8e9a1c017233120608b11bbf3 /drivers/usb/renesas_usbhs/pipe.c
parentef8bedb9048c293dfa85ac36482a1970646a8272 (diff)
usb: gadget: renesas_usbhs: remove unneeded parameter from usbhs_mod_is_host()
it was possible to get usbhs_mod from usbhs_priv. this patch remove unneeded parameter. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/renesas_usbhs/pipe.c')
-rw-r--r--drivers/usb/renesas_usbhs/pipe.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/usb/renesas_usbhs/pipe.c b/drivers/usb/renesas_usbhs/pipe.c
index 6aaa4364994..ff97a8e4fcd 100644
--- a/drivers/usb/renesas_usbhs/pipe.c
+++ b/drivers/usb/renesas_usbhs/pipe.c
@@ -545,9 +545,8 @@ struct usbhs_pipe *usbhs_pipe_malloc(struct usbhs_priv *priv,
545 int dir_in) 545 int dir_in)
546{ 546{
547 struct device *dev = usbhs_priv_to_dev(priv); 547 struct device *dev = usbhs_priv_to_dev(priv);
548 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
549 struct usbhs_pipe *pipe; 548 struct usbhs_pipe *pipe;
550 int is_host = usbhs_mod_is_host(priv, mod); 549 int is_host = usbhs_mod_is_host(priv);
551 int ret; 550 int ret;
552 u16 pipecfg, pipebuf; 551 u16 pipecfg, pipebuf;
553 552