usb: dwc2: Fix brace usage
[linux-block.git] / drivers / usb / dwc2 / platform.c
index 4fc8c603afb8b476266da434b4cd4a0625f7f30b..3f59a73de24886bd502d008f8a133cadad7e84e8 100644 (file)
@@ -111,7 +111,7 @@ static int dwc2_get_dr_mode(struct dwc2_hsotg *hsotg)
 
        if (mode != hsotg->dr_mode) {
                dev_warn(hsotg->dev,
-                       "Configuration mismatch. dr_mode forced to %s\n",
+                        "Configuration mismatch. dr_mode forced to %s\n",
                        mode == USB_DR_MODE_HOST ? "host" : "device");
 
                hsotg->dr_mode = mode;
@@ -136,11 +136,11 @@ static int __dwc2_lowlevel_hw_enable(struct dwc2_hsotg *hsotg)
                        return ret;
        }
 
-       if (hsotg->uphy)
+       if (hsotg->uphy) {
                ret = usb_phy_init(hsotg->uphy);
-       else if (hsotg->plat && hsotg->plat->phy_init)
+       } else if (hsotg->plat && hsotg->plat->phy_init) {
                ret = hsotg->plat->phy_init(pdev, hsotg->plat->phy_type);
-       else {
+       else {
                ret = phy_power_on(hsotg->phy);
                if (ret == 0)
                        ret = phy_init(hsotg->phy);
@@ -170,11 +170,11 @@ static int __dwc2_lowlevel_hw_disable(struct dwc2_hsotg *hsotg)
        struct platform_device *pdev = to_platform_device(hsotg->dev);
        int ret = 0;
 
-       if (hsotg->uphy)
+       if (hsotg->uphy) {
                usb_phy_shutdown(hsotg->uphy);
-       else if (hsotg->plat && hsotg->plat->phy_exit)
+       } else if (hsotg->plat && hsotg->plat->phy_exit) {
                ret = hsotg->plat->phy_exit(pdev, hsotg->plat->phy_type);
-       else {
+       else {
                ret = phy_exit(hsotg->phy);
                if (ret == 0)
                        ret = phy_power_off(hsotg->phy);