|
@@ -18,6 +18,7 @@
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
#include <linux/platform_device.h>
|
|
|
+#include <linux/pm_runtime.h>
|
|
|
#include <linux/usb/msm_hsusb_hw.h>
|
|
|
#include <linux/usb/ulpi.h>
|
|
|
|
|
@@ -108,6 +109,9 @@ static int ci13xxx_msm_probe(struct platform_device *pdev)
|
|
|
goto udc_remove;
|
|
|
}
|
|
|
|
|
|
+ pm_runtime_no_callbacks(&pdev->dev);
|
|
|
+ pm_runtime_enable(&pdev->dev);
|
|
|
+
|
|
|
return 0;
|
|
|
|
|
|
udc_remove:
|