diff options
author | Thomas Pugliese <thomas.pugliese@gmail.com> | 2013-06-06 20:42:54 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-06-06 21:14:38 +0200 |
commit | edc40a4bbe4d8bb0f6ee69d562a38e8783d7a4f9 (patch) | |
tree | f4f586d878c1603b2bd8fdcb5bd9aeda514f28f0 /drivers/usb/host/whci/hcd.c | |
parent | USB: fix PTR_ERR translation in init_usb_class() (diff) | |
download | linux-edc40a4bbe4d8bb0f6ee69d562a38e8783d7a4f9.tar.xz linux-edc40a4bbe4d8bb0f6ee69d562a38e8783d7a4f9.zip |
wusbhc: disable suspend and resume on the root hub.
Suspend and resume are not currently supported on the wireless root hub.
Remove the suspend and resume op functions in the host controller driver
to avoid constant error messages in the system log.
Signed-off-by: Thomas Pugliese <thomas.pugliese@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/whci/hcd.c')
-rw-r--r-- | drivers/usb/host/whci/hcd.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/usb/host/whci/hcd.c b/drivers/usb/host/whci/hcd.c index c3a647816af0..ecc88db804e0 100644 --- a/drivers/usb/host/whci/hcd.c +++ b/drivers/usb/host/whci/hcd.c @@ -231,8 +231,6 @@ static struct hc_driver whc_hc_driver = { .hub_status_data = wusbhc_rh_status_data, .hub_control = wusbhc_rh_control, - .bus_suspend = wusbhc_rh_suspend, - .bus_resume = wusbhc_rh_resume, .start_port_reset = wusbhc_rh_start_port_reset, }; |