|
@@ -364,8 +364,7 @@ static void ci_hdrc_imx_shutdown(struct platform_device *pdev)
|
|
|
ci_hdrc_imx_remove(pdev);
|
|
|
}
|
|
|
|
|
|
-#ifdef CONFIG_PM
|
|
|
-static int imx_controller_suspend(struct device *dev)
|
|
|
+static int __maybe_unused imx_controller_suspend(struct device *dev)
|
|
|
{
|
|
|
struct ci_hdrc_imx_data *data = dev_get_drvdata(dev);
|
|
|
|
|
@@ -377,7 +376,7 @@ static int imx_controller_suspend(struct device *dev)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static int imx_controller_resume(struct device *dev)
|
|
|
+static int __maybe_unused imx_controller_resume(struct device *dev)
|
|
|
{
|
|
|
struct ci_hdrc_imx_data *data = dev_get_drvdata(dev);
|
|
|
int ret = 0;
|
|
@@ -408,8 +407,7 @@ clk_disable:
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
-#ifdef CONFIG_PM_SLEEP
|
|
|
-static int ci_hdrc_imx_suspend(struct device *dev)
|
|
|
+static int __maybe_unused ci_hdrc_imx_suspend(struct device *dev)
|
|
|
{
|
|
|
int ret;
|
|
|
|
|
@@ -431,7 +429,7 @@ static int ci_hdrc_imx_suspend(struct device *dev)
|
|
|
return imx_controller_suspend(dev);
|
|
|
}
|
|
|
|
|
|
-static int ci_hdrc_imx_resume(struct device *dev)
|
|
|
+static int __maybe_unused ci_hdrc_imx_resume(struct device *dev)
|
|
|
{
|
|
|
struct ci_hdrc_imx_data *data = dev_get_drvdata(dev);
|
|
|
int ret;
|
|
@@ -445,9 +443,8 @@ static int ci_hdrc_imx_resume(struct device *dev)
|
|
|
|
|
|
return ret;
|
|
|
}
|
|
|
-#endif /* CONFIG_PM_SLEEP */
|
|
|
|
|
|
-static int ci_hdrc_imx_runtime_suspend(struct device *dev)
|
|
|
+static int __maybe_unused ci_hdrc_imx_runtime_suspend(struct device *dev)
|
|
|
{
|
|
|
struct ci_hdrc_imx_data *data = dev_get_drvdata(dev);
|
|
|
int ret;
|
|
@@ -466,13 +463,11 @@ static int ci_hdrc_imx_runtime_suspend(struct device *dev)
|
|
|
return imx_controller_suspend(dev);
|
|
|
}
|
|
|
|
|
|
-static int ci_hdrc_imx_runtime_resume(struct device *dev)
|
|
|
+static int __maybe_unused ci_hdrc_imx_runtime_resume(struct device *dev)
|
|
|
{
|
|
|
return imx_controller_resume(dev);
|
|
|
}
|
|
|
|
|
|
-#endif /* CONFIG_PM */
|
|
|
-
|
|
|
static const struct dev_pm_ops ci_hdrc_imx_pm_ops = {
|
|
|
SET_SYSTEM_SLEEP_PM_OPS(ci_hdrc_imx_suspend, ci_hdrc_imx_resume)
|
|
|
SET_RUNTIME_PM_OPS(ci_hdrc_imx_runtime_suspend,
|
|
@@ -492,7 +487,7 @@ static struct platform_driver ci_hdrc_imx_driver = {
|
|
|
module_platform_driver(ci_hdrc_imx_driver);
|
|
|
|
|
|
MODULE_ALIAS("platform:imx-usb");
|
|
|
-MODULE_LICENSE("GPL v2");
|
|
|
+MODULE_LICENSE("GPL");
|
|
|
MODULE_DESCRIPTION("CI HDRC i.MX USB binding");
|
|
|
MODULE_AUTHOR("Marek Vasut <marex@denx.de>");
|
|
|
MODULE_AUTHOR("Richard Zhao <richard.zhao@freescale.com>");
|