forked from Minki/linux
USB: core endpoint: Fix Coding Styles
Fixed coding styles in the core usb endpoint. Signed-off-by: Carlos Sánchez Acosta <csanchez@neurowork.net> Signed-off-by: Alejandro Sánchez Acosta <asanchez@neurowork.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
16be57259f
commit
cd62aced31
@ -96,16 +96,21 @@ static ssize_t show_ep_interval(struct device *dev,
|
||||
|
||||
switch (usb_endpoint_type(ep->desc)) {
|
||||
case USB_ENDPOINT_XFER_CONTROL:
|
||||
if (ep->udev->speed == USB_SPEED_HIGH) /* uframes per NAK */
|
||||
if (ep->udev->speed == USB_SPEED_HIGH)
|
||||
/* uframes per NAK */
|
||||
interval = ep->desc->bInterval;
|
||||
break;
|
||||
|
||||
case USB_ENDPOINT_XFER_ISOC:
|
||||
interval = 1 << (ep->desc->bInterval - 1);
|
||||
break;
|
||||
|
||||
case USB_ENDPOINT_XFER_BULK:
|
||||
if (ep->udev->speed == USB_SPEED_HIGH && !in) /* uframes per NAK */
|
||||
if (ep->udev->speed == USB_SPEED_HIGH && !in)
|
||||
/* uframes per NAK */
|
||||
interval = ep->desc->bInterval;
|
||||
break;
|
||||
|
||||
case USB_ENDPOINT_XFER_INT:
|
||||
if (ep->udev->speed == USB_SPEED_HIGH)
|
||||
interval = 1 << (ep->desc->bInterval - 1);
|
||||
|
Loading…
Reference in New Issue
Block a user