diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2011-10-11 01:04:23 -0400 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2011-10-13 13:41:43 -0400 |
commit | 3cf8ed1284799406c506029207004e97d5b2c738 (patch) | |
tree | d93b8b404b0edc8c4b7bdd2c1d29a5b67a3a67cf /drivers/usb/renesas_usbhs/pipe.c | |
parent | bc6fbf59df75c4e3533d0daf7873f783c835bd53 (diff) |
usb: gadget: renesas_usbhs: add usbhs_pipe_name()
pipe name is usefull function for mod_xxx
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.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/usb/renesas_usbhs/pipe.c b/drivers/usb/renesas_usbhs/pipe.c index 4235a2ecebf9..7636f2353b9d 100644 --- a/drivers/usb/renesas_usbhs/pipe.c +++ b/drivers/usb/renesas_usbhs/pipe.c | |||
@@ -39,6 +39,11 @@ static char *usbhsp_pipe_name[] = { | |||
39 | [USB_ENDPOINT_XFER_ISOC] = "ISO", | 39 | [USB_ENDPOINT_XFER_ISOC] = "ISO", |
40 | }; | 40 | }; |
41 | 41 | ||
42 | char *usbhs_pipe_name(struct usbhs_pipe *pipe) | ||
43 | { | ||
44 | return usbhsp_pipe_name[usbhs_pipe_type(pipe)]; | ||
45 | } | ||
46 | |||
42 | /* | 47 | /* |
43 | * DCPCTR/PIPEnCTR functions | 48 | * DCPCTR/PIPEnCTR functions |
44 | */ | 49 | */ |
@@ -592,7 +597,7 @@ struct usbhs_pipe *usbhs_pipe_malloc(struct usbhs_priv *priv, | |||
592 | 597 | ||
593 | dev_dbg(dev, "enable pipe %d : %s (%s)\n", | 598 | dev_dbg(dev, "enable pipe %d : %s (%s)\n", |
594 | usbhs_pipe_number(pipe), | 599 | usbhs_pipe_number(pipe), |
595 | usbhsp_pipe_name[endpoint_type], | 600 | usbhs_pipe_name(pipe), |
596 | usbhs_pipe_is_dir_in(pipe) ? "in" : "out"); | 601 | usbhs_pipe_is_dir_in(pipe) ? "in" : "out"); |
597 | 602 | ||
598 | /* | 603 | /* |