aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorAlexander Beregalov <a.beregalov@gmail.com>2009-04-17 07:19:14 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2009-04-23 17:15:27 -0400
commit10c966c310da12e1e3f68d717a8e15274fdadf29 (patch)
tree60c02d208f44e59d340ead6821d6abc5c527ede4 /drivers
parent9cceedb8a87f31e341c1bf1bc6c28a13f9632aff (diff)
USB: musb: fix build when !CONFIG_PM
Fix this build error when CONFIG_PM is not set: drivers/usb/musb/musb_core.c:2232: error: 'musb_resume_early' undeclared here Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/usb/musb/musb_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/musb/musb_core.c b/drivers/usb/musb/musb_core.c
index 0112353ec97d..4000cf6d1e81 100644
--- a/drivers/usb/musb/musb_core.c
+++ b/drivers/usb/musb/musb_core.c
@@ -2191,7 +2191,7 @@ static int musb_resume_early(struct platform_device *pdev)
2191 2191
2192#else 2192#else
2193#define musb_suspend NULL 2193#define musb_suspend NULL
2194#define musb_resume NULL 2194#define musb_resume_early NULL
2195#endif 2195#endif
2196 2196
2197static struct platform_driver musb_driver = { 2197static struct platform_driver musb_driver = {