diff options
author | Felipe Balbi <balbi@ti.com> | 2015-05-27 12:24:23 -0500 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2015-05-27 12:29:57 -0500 |
commit | fea2fc6e21967fc674d218f20710680d814079d2 (patch) | |
tree | 239200467510e3e536d2eaa8fb83fab18c121e61 /drivers/usb/musb | |
parent | 24fe86a617c550fb9bdc6c8bd7cf647d3955f8ba (diff) | |
download | linux-fea2fc6e21967fc674d218f20710680d814079d2.tar.bz2 |
usb: musb: am35x: fix build warnings
This patch fixes the following build warnings:
drivers/usb/musb/am35x.c:573:12: warning: ‘am35x_suspend’ defined but
not used [-Wunused-function]
drivers/usb/musb/am35x.c:589:12: warning: ‘am35x_resume’ defined but not
used [-Wunused-function]
drivers/usb/musb/am35x.c:573:12: warning: ‘am35x_suspend’ defined but
not used [-Wunused-function]
drivers/usb/musb/am35x.c:589:12: warning: ‘am35x_resume’ defined but not
used [-Wunused-function]
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/musb')
-rw-r--r-- | drivers/usb/musb/am35x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/musb/am35x.c b/drivers/usb/musb/am35x.c index 6cfd43a62d3b..c41fe588d14d 100644 --- a/drivers/usb/musb/am35x.c +++ b/drivers/usb/musb/am35x.c @@ -569,7 +569,7 @@ static int am35x_remove(struct platform_device *pdev) return 0; } -#ifdef CONFIG_PM +#ifdef CONFIG_PM_SLEEP static int am35x_suspend(struct device *dev) { struct am35x_glue *glue = dev_get_drvdata(dev); |