aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/core
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2005-10-23 23:02:20 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2005-10-28 16:47:52 -0700
commit9a7834d06d553d02cc6e659e94772f69a8b5367f (patch)
tree9ca891740becd9a090565bc3d73f8da2c2ea54d3 /drivers/usb/core
parent[PATCH] USB: fix pm patches with CONFIG_PM off part 1 (diff)
downloadlinux-dev-9a7834d06d553d02cc6e659e94772f69a8b5367f.tar.xz
linux-dev-9a7834d06d553d02cc6e659e94772f69a8b5367f.zip
[PATCH] USB: fix pm patches with CONFIG_PM off part 2
With CONFIG_PM=n: drivers/built-in.o(.text+0x1098c): In function `hub_thread': drivers/usb/core/hub.c:2673: undefined reference to `.dpm_runtime_resume' drivers/built-in.o(.text+0x10998):drivers/usb/core/hub.c:2674: undefined reference to `.dpm_runtime_resume' Please, never ever ever put extern decls into .c files. Use the darn header files :( Cc: David Brownell <david-b@pacbell.net> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/core')
-rw-r--r--drivers/usb/core/hub.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c
index 1bacb374b007..9660a8909b7c 100644
--- a/drivers/usb/core/hub.c
+++ b/drivers/usb/core/hub.c
@@ -2652,8 +2652,6 @@ static void hub_events(void)
* stub "device" node was never suspended.
*/
if (i) {
- extern void dpm_runtime_resume(struct device *);
-
dpm_runtime_resume(&hdev->dev);
dpm_runtime_resume(&intf->dev);
}