Commit 4035c5b5 authored by Chunfeng Yun's avatar Chunfeng Yun Committed by Felipe Balbi

usb: introduce usb_ep_type_string() function

In some places, the code prints a human-readable USB endpoint
transfer type (e.g. "bulk"). This involves a switch statement
sometimes wrapped around in ({ ... }) block leading to code
repetition.
To make this scenario easier, here introduces usb_ep_type_string()
function, which returns a human-readable name of provided
endpoint type.
It also changes a few places switch was used to use this
new function.
Signed-off-by: default avatarChunfeng Yun <chunfeng.yun@mediatek.com>
Signed-off-by: default avatarFelipe Balbi <felipe.balbi@linux.intel.com>
parent 41a91c60
...@@ -16,6 +16,22 @@ ...@@ -16,6 +16,22 @@
#include <linux/usb/otg.h> #include <linux/usb/otg.h>
#include <linux/of_platform.h> #include <linux/of_platform.h>
static const char *const ep_type_names[] = {
[USB_ENDPOINT_XFER_CONTROL] = "ctrl",
[USB_ENDPOINT_XFER_ISOC] = "isoc",
[USB_ENDPOINT_XFER_BULK] = "bulk",
[USB_ENDPOINT_XFER_INT] = "intr",
};
const char *usb_ep_type_string(int ep_type)
{
if (ep_type < 0 || ep_type >= ARRAY_SIZE(ep_type_names))
return "unknown";
return ep_type_names[ep_type];
}
EXPORT_SYMBOL_GPL(usb_ep_type_string);
const char *usb_otg_state_string(enum usb_otg_state state) const char *usb_otg_state_string(enum usb_otg_state state)
{ {
static const char *const names[] = { static const char *const names[] = {
......
...@@ -1878,23 +1878,10 @@ void usb_hcd_flush_endpoint(struct usb_device *udev, ...@@ -1878,23 +1878,10 @@ void usb_hcd_flush_endpoint(struct usb_device *udev,
/* kick hcd */ /* kick hcd */
unlink1(hcd, urb, -ESHUTDOWN); unlink1(hcd, urb, -ESHUTDOWN);
dev_dbg (hcd->self.controller, dev_dbg (hcd->self.controller,
"shutdown urb %pK ep%d%s%s\n", "shutdown urb %pK ep%d%s-%s\n",
urb, usb_endpoint_num(&ep->desc), urb, usb_endpoint_num(&ep->desc),
is_in ? "in" : "out", is_in ? "in" : "out",
({ char *s; usb_ep_type_string(usb_endpoint_type(&ep->desc)));
switch (usb_endpoint_type(&ep->desc)) {
case USB_ENDPOINT_XFER_CONTROL:
s = ""; break;
case USB_ENDPOINT_XFER_BULK:
s = "-bulk"; break;
case USB_ENDPOINT_XFER_INT:
s = "-intr"; break;
default:
s = "-iso"; break;
};
s;
}));
usb_put_urb (urb); usb_put_urb (urb);
/* list contents may have changed */ /* list contents may have changed */
......
...@@ -593,10 +593,6 @@ static int ast_vhub_epn_disable(struct usb_ep* u_ep) ...@@ -593,10 +593,6 @@ static int ast_vhub_epn_disable(struct usb_ep* u_ep)
static int ast_vhub_epn_enable(struct usb_ep* u_ep, static int ast_vhub_epn_enable(struct usb_ep* u_ep,
const struct usb_endpoint_descriptor *desc) const struct usb_endpoint_descriptor *desc)
{ {
static const char *ep_type_string[] __maybe_unused = { "ctrl",
"isoc",
"bulk",
"intr" };
struct ast_vhub_ep *ep = to_ast_ep(u_ep); struct ast_vhub_ep *ep = to_ast_ep(u_ep);
struct ast_vhub_dev *dev; struct ast_vhub_dev *dev;
struct ast_vhub *vhub; struct ast_vhub *vhub;
...@@ -646,7 +642,7 @@ static int ast_vhub_epn_enable(struct usb_ep* u_ep, ...@@ -646,7 +642,7 @@ static int ast_vhub_epn_enable(struct usb_ep* u_ep,
ep->epn.wedged = false; ep->epn.wedged = false;
EPDBG(ep, "Enabling [%s] %s num %d maxpacket=%d\n", EPDBG(ep, "Enabling [%s] %s num %d maxpacket=%d\n",
ep->epn.is_in ? "in" : "out", ep_type_string[type], ep->epn.is_in ? "in" : "out", usb_ep_type_string(type),
usb_endpoint_num(desc), maxpacket); usb_endpoint_num(desc), maxpacket);
/* Can we use DMA descriptor mode ? */ /* Can we use DMA descriptor mode ? */
......
...@@ -617,21 +617,7 @@ static int dummy_enable(struct usb_ep *_ep, ...@@ -617,21 +617,7 @@ static int dummy_enable(struct usb_ep *_ep,
_ep->name, _ep->name,
desc->bEndpointAddress & 0x0f, desc->bEndpointAddress & 0x0f,
(desc->bEndpointAddress & USB_DIR_IN) ? "in" : "out", (desc->bEndpointAddress & USB_DIR_IN) ? "in" : "out",
({ char *val; usb_ep_type_string(usb_endpoint_type(desc)),
switch (usb_endpoint_type(desc)) {
case USB_ENDPOINT_XFER_BULK:
val = "bulk";
break;
case USB_ENDPOINT_XFER_ISOC:
val = "iso";
break;
case USB_ENDPOINT_XFER_INT:
val = "intr";
break;
default:
val = "ctrl";
break;
} val; }),
max, ep->stream_en ? "enabled" : "disabled"); max, ep->stream_en ? "enabled" : "disabled");
/* at this point real hardware should be NAKing transfers /* at this point real hardware should be NAKing transfers
......
...@@ -36,6 +36,14 @@ ...@@ -36,6 +36,14 @@
#include <linux/device.h> #include <linux/device.h>
#include <uapi/linux/usb/ch9.h> #include <uapi/linux/usb/ch9.h>
/**
* usb_ep_type_string() - Returns human readable-name of the endpoint type.
* @ep_type: The endpoint type to return human-readable name for. If it's not
* any of the types: USB_ENDPOINT_XFER_{CONTROL, ISOC, BULK, INT},
* usually got by usb_endpoint_type(), the string 'unknown' will be returned.
*/
extern const char *usb_ep_type_string(int ep_type);
/** /**
* usb_speed_string() - Returns human readable-name of the speed. * usb_speed_string() - Returns human readable-name of the speed.
* @speed: The speed to return human-readable name for. If it's not * @speed: The speed to return human-readable name for. If it's not
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment