usb: gadget: fix various indentation issues
There are a bunch of various indentation issues, clean these up. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
This commit is contained in:
parent
97311c8f8b
commit
1ff767bfa5
|
@ -459,10 +459,10 @@ static int f_audio_set_alt(struct usb_function *f, unsigned intf, unsigned alt)
|
|||
} else if (intf == uac1->as_in_intf) {
|
||||
uac1->as_in_alt = alt;
|
||||
|
||||
if (alt)
|
||||
ret = u_audio_start_playback(&uac1->g_audio);
|
||||
else
|
||||
u_audio_stop_playback(&uac1->g_audio);
|
||||
if (alt)
|
||||
ret = u_audio_start_playback(&uac1->g_audio);
|
||||
else
|
||||
u_audio_stop_playback(&uac1->g_audio);
|
||||
} else {
|
||||
dev_err(dev, "%s:%d Error!\n", __func__, __LINE__);
|
||||
return -EINVAL;
|
||||
|
|
|
@ -1218,27 +1218,27 @@ ep0_poll (struct file *fd, poll_table *wait)
|
|||
if (dev->state <= STATE_DEV_OPENED)
|
||||
return DEFAULT_POLLMASK;
|
||||
|
||||
poll_wait(fd, &dev->wait, wait);
|
||||
poll_wait(fd, &dev->wait, wait);
|
||||
|
||||
spin_lock_irq (&dev->lock);
|
||||
spin_lock_irq(&dev->lock);
|
||||
|
||||
/* report fd mode change before acting on it */
|
||||
if (dev->setup_abort) {
|
||||
dev->setup_abort = 0;
|
||||
mask = EPOLLHUP;
|
||||
goto out;
|
||||
}
|
||||
/* report fd mode change before acting on it */
|
||||
if (dev->setup_abort) {
|
||||
dev->setup_abort = 0;
|
||||
mask = EPOLLHUP;
|
||||
goto out;
|
||||
}
|
||||
|
||||
if (dev->state == STATE_DEV_SETUP) {
|
||||
if (dev->setup_in || dev->setup_can_stall)
|
||||
mask = EPOLLOUT;
|
||||
} else {
|
||||
if (dev->ev_next != 0)
|
||||
mask = EPOLLIN;
|
||||
}
|
||||
if (dev->state == STATE_DEV_SETUP) {
|
||||
if (dev->setup_in || dev->setup_can_stall)
|
||||
mask = EPOLLOUT;
|
||||
} else {
|
||||
if (dev->ev_next != 0)
|
||||
mask = EPOLLIN;
|
||||
}
|
||||
out:
|
||||
spin_unlock_irq(&dev->lock);
|
||||
return mask;
|
||||
spin_unlock_irq(&dev->lock);
|
||||
return mask;
|
||||
}
|
||||
|
||||
static long dev_ioctl (struct file *fd, unsigned code, unsigned long value)
|
||||
|
|
|
@ -295,7 +295,7 @@ static int ast_vhub_rep_desc(struct ast_vhub_ep *ep,
|
|||
dsize = AST_VHUB_HUB_DESC_SIZE;
|
||||
memcpy(ep->buf, &ast_vhub_hub_desc, dsize);
|
||||
BUILD_BUG_ON(dsize > sizeof(ast_vhub_hub_desc));
|
||||
BUILD_BUG_ON(AST_VHUB_HUB_DESC_SIZE >= AST_VHUB_EP0_MAX_PACKET);
|
||||
BUILD_BUG_ON(AST_VHUB_HUB_DESC_SIZE >= AST_VHUB_EP0_MAX_PACKET);
|
||||
break;
|
||||
default:
|
||||
return std_req_stall;
|
||||
|
|
|
@ -311,8 +311,8 @@ int bdc_ep_clear_stall(struct bdc *bdc, int epnum)
|
|||
/* if the endpoint it not stallled */
|
||||
if (!(ep->flags & BDC_EP_STALL)) {
|
||||
ret = bdc_ep_set_stall(bdc, epnum);
|
||||
if (ret)
|
||||
return ret;
|
||||
if (ret)
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
/* Preserve the seq number for ep0 only */
|
||||
|
|
|
@ -2279,7 +2279,7 @@ static void usb_reinit_338x(struct net2280 *dev)
|
|||
* - It is safe to set for all connection speeds; all chip revisions.
|
||||
* - R-M-W to leave other bits undisturbed.
|
||||
* - Reference PLX TT-7372
|
||||
*/
|
||||
*/
|
||||
val = readl(&dev->ll_chicken_reg->ll_tsn_chicken_bit);
|
||||
val |= BIT(RECOVERY_IDLE_TO_RECOVER_FMW);
|
||||
writel(val, &dev->ll_chicken_reg->ll_tsn_chicken_bit);
|
||||
|
|
Loading…
Reference in New Issue