diff options
author | Felipe Balbi <balbi@ti.com> | 2015-05-27 13:25:40 -0400 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2015-05-27 13:30:20 -0400 |
commit | 30d092231d3b0579cb2fecc1ed8b25b329d47f98 (patch) | |
tree | d36b682a00619ac19862b567ca59b78e75f6f91b /drivers/usb | |
parent | fea2fc6e21967fc674d218f20710680d814079d2 (diff) |
usb: musb: ux500: fix build warnings
This patch fixes the following build warnings:
drivers/usb/musb/ux500.c:346:12: warning: ‘ux500_suspend’ defined but
not used [-Wunused-function]
drivers/usb/musb/ux500.c:357:12: warning: ‘ux500_resume’ defined but not
used [-Wunused-function]
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/musb/ux500.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/musb/ux500.c b/drivers/usb/musb/ux500.c index 2967b51383d8..39168fe9b406 100644 --- a/drivers/usb/musb/ux500.c +++ b/drivers/usb/musb/ux500.c | |||
@@ -342,7 +342,7 @@ static int ux500_remove(struct platform_device *pdev) | |||
342 | return 0; | 342 | return 0; |
343 | } | 343 | } |
344 | 344 | ||
345 | #ifdef CONFIG_PM | 345 | #ifdef CONFIG_PM_SLEEP |
346 | static int ux500_suspend(struct device *dev) | 346 | static int ux500_suspend(struct device *dev) |
347 | { | 347 | { |
348 | struct ux500_glue *glue = dev_get_drvdata(dev); | 348 | struct ux500_glue *glue = dev_get_drvdata(dev); |