* The GPWRDN interrupts are those that occur in both Host and
  * Device mode while core is in hibernated state.
  */
-static void dwc2_handle_gpwrdn_intr(struct dwc2_hsotg *hsotg)
+static int dwc2_handle_gpwrdn_intr(struct dwc2_hsotg *hsotg)
 {
        u32 gpwrdn;
        int linestate;
+       int ret = 0;
 
        gpwrdn = dwc2_readl(hsotg, GPWRDN);
        /* clear all interrupt */
                if (hsotg->hw_params.hibernation &&
                    hsotg->hibernated) {
                        if (gpwrdn & GPWRDN_IDSTS) {
-                               dwc2_exit_hibernation(hsotg, 0, 0, 0);
+                               ret = dwc2_exit_hibernation(hsotg, 0, 0, 0);
+                               if (ret)
+                                       dev_err(hsotg->dev,
+                                               "exit hibernation failed.\n");
                                call_gadget(hsotg, resume);
                        } else {
-                               dwc2_exit_hibernation(hsotg, 1, 0, 1);
+                               ret = dwc2_exit_hibernation(hsotg, 1, 0, 1);
+                               if (ret)
+                                       dev_err(hsotg->dev,
+                                               "exit hibernation failed.\n");
                        }
                }
        } else if ((gpwrdn & GPWRDN_RST_DET) &&
                   (gpwrdn & GPWRDN_RST_DET_MSK)) {
                dev_dbg(hsotg->dev, "%s: GPWRDN_RST_DET\n", __func__);
-               if (!linestate && (gpwrdn & GPWRDN_BSESSVLD))
-                       dwc2_exit_hibernation(hsotg, 0, 1, 0);
+               if (!linestate) {
+                       ret = dwc2_exit_hibernation(hsotg, 0, 1, 0);
+                       if (ret)
+                               dev_err(hsotg->dev,
+                                       "exit hibernation failed.\n");
+               }
        } else if ((gpwrdn & GPWRDN_STS_CHGINT) &&
                   (gpwrdn & GPWRDN_STS_CHGINT_MSK)) {
                dev_dbg(hsotg->dev, "%s: GPWRDN_STS_CHGINT\n", __func__);
                 */
                dwc_handle_gpwrdn_disc_det(hsotg, gpwrdn);
        }
+
+       return ret;
 }
 
 /*