diff options
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 | /* |