mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-26 21:54:11 +08:00
usb: gadget: net2280: Refactor queues_show
Replace a long and ugly expresion with an already available function. Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> Signed-off-by: Felipe Balbi <balbi@ti.com>
This commit is contained in:
parent
9a028e46fc
commit
a27f37a13c
@ -1777,15 +1777,7 @@ static ssize_t queues_show(struct device *_dev, struct device_attribute *attr,
|
||||
"\n%s (ep%d%s-%s) max %04x %s fifo %d\n",
|
||||
ep->ep.name, t & USB_ENDPOINT_NUMBER_MASK,
|
||||
(t & USB_DIR_IN) ? "in" : "out",
|
||||
({ char *val;
|
||||
switch (d->bmAttributes & 0x03) {
|
||||
case USB_ENDPOINT_XFER_BULK:
|
||||
val = "bulk"; break;
|
||||
case USB_ENDPOINT_XFER_INT:
|
||||
val = "intr"; break;
|
||||
default:
|
||||
val = "iso"; break;
|
||||
} val; }),
|
||||
type_string(d->bmAttributes),
|
||||
usb_endpoint_maxp (d) & 0x1fff,
|
||||
ep->dma ? "dma" : "pio", ep->fifo_size
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user