diff options
| author | Sarah Sharp <sarah.a.sharp@linux.intel.com> | 2010-10-15 14:59:15 -0700 | 
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-10-22 10:22:15 -0700 | 
| commit | 436a389096e1feda2c382cad83b6a8d6de8615a0 (patch) | |
| tree | 6c68d7e5ab037deef677e35a8b1bfc425e63694f /drivers/usb/host/xhci.c | |
| parent | 39eb234874af4322f85e2a29e3aad33ce68cbed5 (diff) | |
usb: Fix linker errors with CONFIG_PM=n
Fix these linker errors when CONFIG_PM=n:
ERROR: "xhci_bus_resume" [drivers/usb/host/xhci-hcd.ko] undefined!
ERROR: "xhci_bus_suspend" [drivers/usb/host/xhci-hcd.ko] undefined!
Reported-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Acked-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/host/xhci.c')
| -rw-r--r-- | drivers/usb/host/xhci.c | 6 | 
1 files changed, 0 insertions, 6 deletions
| diff --git a/drivers/usb/host/xhci.c b/drivers/usb/host/xhci.c index 9dc5be557d92..5d7d4e951ea4 100644 --- a/drivers/usb/host/xhci.c +++ b/drivers/usb/host/xhci.c @@ -761,12 +761,6 @@ int xhci_resume(struct xhci_hcd *xhci, bool hibernated)  	spin_unlock_irq(&xhci->lock);  	return 0;  } - -#else - -#define	xhci_suspend	NULL -#define	xhci_resume	NULL -  #endif	/* CONFIG_PM */  /*-------------------------------------------------------------------------*/ | 
