From: Felipe Balbi Date: Wed, 25 Feb 2015 20:05:15 +0000 (-0600) Subject: usb: musb: core: add missing curly braces X-Git-Tag: v4.1-rc1~154^2~4^2~114 X-Git-Url: http://git.cascardo.info/?a=commitdiff_plain;h=d57a27711939dcb289b3d17ac48fca99f0fd245d;p=cascardo%2Flinux.git usb: musb: core: add missing curly braces no functional changes, clean up only. Tested-by: Bin Liu Signed-off-by: Felipe Balbi --- diff --git a/drivers/usb/musb/musb_core.c b/drivers/usb/musb/musb_core.c index 8066dbab1045..21ab26636631 100644 --- a/drivers/usb/musb/musb_core.c +++ b/drivers/usb/musb/musb_core.c @@ -887,9 +887,9 @@ b_host: * caused BABBLE. When HS BABBLE happens we can only * stop the session. */ - if (devctl & (MUSB_DEVCTL_FSDEV | MUSB_DEVCTL_LSDEV)) + if (devctl & (MUSB_DEVCTL_FSDEV | MUSB_DEVCTL_LSDEV)) { dev_dbg(musb->controller, "BABBLE devctl: %02x\n", devctl); - else { + } else { ERR("Stopping host session -- babble\n"); musb_writeb(musb->mregs, MUSB_DEVCTL, 0); }