提交 9925e6eb 编写于 作者: A Arnd Bergmann 提交者: Felipe Balbi

usb: dwc3: qcom: mark PM functions as __maybe_unused

The #ifdef guards around these are wrong, resulting in warnings
in certain configurations:

drivers/usb/dwc3/dwc3-qcom.c:244:12: error: 'dwc3_qcom_resume' defined but not used [-Werror=unused-function]
 static int dwc3_qcom_resume(struct dwc3_qcom *qcom)
            ^~~~~~~~~~~~~~~~
drivers/usb/dwc3/dwc3-qcom.c:223:12: error: 'dwc3_qcom_suspend' defined but not used [-Werror=unused-function]
 static int dwc3_qcom_suspend(struct dwc3_qcom *qcom)

This replaces the guards with __maybe_unused annotations to shut up
the warnings and give better compile time coverage.

Fixes: a4333c3a ("usb: dwc3: Add Qualcomm DWC3 glue driver")
Reviewed-by: NDouglas Anderson <dianders@chromium.org>
Acked-by: NGeert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: NArnd Bergmann <arnd@arndb.de>
Signed-off-by: NFelipe Balbi <felipe.balbi@linux.intel.com>
上级 93ef2dc0
...@@ -548,8 +548,7 @@ static int dwc3_qcom_remove(struct platform_device *pdev) ...@@ -548,8 +548,7 @@ static int dwc3_qcom_remove(struct platform_device *pdev)
return 0; return 0;
} }
#ifdef CONFIG_PM_SLEEP static int __maybe_unused dwc3_qcom_pm_suspend(struct device *dev)
static int dwc3_qcom_pm_suspend(struct device *dev)
{ {
struct dwc3_qcom *qcom = dev_get_drvdata(dev); struct dwc3_qcom *qcom = dev_get_drvdata(dev);
int ret = 0; int ret = 0;
...@@ -561,7 +560,7 @@ static int dwc3_qcom_pm_suspend(struct device *dev) ...@@ -561,7 +560,7 @@ static int dwc3_qcom_pm_suspend(struct device *dev)
return ret; return ret;
} }
static int dwc3_qcom_pm_resume(struct device *dev) static int __maybe_unused dwc3_qcom_pm_resume(struct device *dev)
{ {
struct dwc3_qcom *qcom = dev_get_drvdata(dev); struct dwc3_qcom *qcom = dev_get_drvdata(dev);
int ret; int ret;
...@@ -572,23 +571,20 @@ static int dwc3_qcom_pm_resume(struct device *dev) ...@@ -572,23 +571,20 @@ static int dwc3_qcom_pm_resume(struct device *dev)
return ret; return ret;
} }
#endif
#ifdef CONFIG_PM static int __maybe_unused dwc3_qcom_runtime_suspend(struct device *dev)
static int dwc3_qcom_runtime_suspend(struct device *dev)
{ {
struct dwc3_qcom *qcom = dev_get_drvdata(dev); struct dwc3_qcom *qcom = dev_get_drvdata(dev);
return dwc3_qcom_suspend(qcom); return dwc3_qcom_suspend(qcom);
} }
static int dwc3_qcom_runtime_resume(struct device *dev) static int __maybe_unused dwc3_qcom_runtime_resume(struct device *dev)
{ {
struct dwc3_qcom *qcom = dev_get_drvdata(dev); struct dwc3_qcom *qcom = dev_get_drvdata(dev);
return dwc3_qcom_resume(qcom); return dwc3_qcom_resume(qcom);
} }
#endif
static const struct dev_pm_ops dwc3_qcom_dev_pm_ops = { static const struct dev_pm_ops dwc3_qcom_dev_pm_ops = {
SET_SYSTEM_SLEEP_PM_OPS(dwc3_qcom_pm_suspend, dwc3_qcom_pm_resume) SET_SYSTEM_SLEEP_PM_OPS(dwc3_qcom_pm_suspend, dwc3_qcom_pm_resume)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册