aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb
diff options
context:
space:
mode:
authorAlan Stern <stern@rowland.harvard.edu>2010-04-02 13:22:09 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2010-05-20 16:21:37 -0400
commit9e18c821659d836bd63f88df3c19729327728496 (patch)
tree4148e58d0e03aecfe0dbeedd175bc960006570a9 /drivers/usb
parent7aba8d014341341590ecb64050b7a026642a62eb (diff)
USB: use PM core routines to enable/disable autosuspend
This patch (as1366) replaces the private routines usb_enable_autosuspend() and usb_disable_autosuspend() with calls to the standard pm_runtime_allow() and pm_runtime_forbid() functions in the runtime PM framework. They do the same thing. Signed-off-by: Alan Stern <stern@rowland.harvard.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/core/driver.c21
-rw-r--r--drivers/usb/core/sysfs.c10
2 files changed, 10 insertions, 21 deletions
diff --git a/drivers/usb/core/driver.c b/drivers/usb/core/driver.c
index 271e857be0fa..207146743ea7 100644
--- a/drivers/usb/core/driver.c
+++ b/drivers/usb/core/driver.c
@@ -1356,13 +1356,9 @@ int usb_resume(struct device *dev, pm_message_t msg)
1356 * 1356 *
1357 * The caller must hold @udev's device lock. 1357 * The caller must hold @udev's device lock.
1358 */ 1358 */
1359int usb_enable_autosuspend(struct usb_device *udev) 1359void usb_enable_autosuspend(struct usb_device *udev)
1360{ 1360{
1361 if (udev->autosuspend_disabled) { 1361 pm_runtime_allow(&udev->dev);
1362 udev->autosuspend_disabled = 0;
1363 usb_autosuspend_device(udev);
1364 }
1365 return 0;
1366} 1362}
1367EXPORT_SYMBOL_GPL(usb_enable_autosuspend); 1363EXPORT_SYMBOL_GPL(usb_enable_autosuspend);
1368 1364
@@ -1375,16 +1371,9 @@ EXPORT_SYMBOL_GPL(usb_enable_autosuspend);
1375 * 1371 *
1376 * The caller must hold @udev's device lock. 1372 * The caller must hold @udev's device lock.
1377 */ 1373 */
1378int usb_disable_autosuspend(struct usb_device *udev) 1374void usb_disable_autosuspend(struct usb_device *udev)
1379{ 1375{
1380 int rc = 0; 1376 pm_runtime_forbid(&udev->dev);
1381
1382 if (!udev->autosuspend_disabled) {
1383 rc = usb_autoresume_device(udev);
1384 if (rc == 0)
1385 udev->autosuspend_disabled = 1;
1386 }
1387 return rc;
1388} 1377}
1389EXPORT_SYMBOL_GPL(usb_disable_autosuspend); 1378EXPORT_SYMBOL_GPL(usb_disable_autosuspend);
1390 1379
@@ -1528,7 +1517,7 @@ void usb_autopm_put_interface_async(struct usb_interface *intf)
1528 atomic_dec(&intf->pm_usage_cnt); 1517 atomic_dec(&intf->pm_usage_cnt);
1529 pm_runtime_put_noidle(&intf->dev); 1518 pm_runtime_put_noidle(&intf->dev);
1530 1519
1531 if (!udev->autosuspend_disabled) { 1520 if (udev->dev.power.runtime_auto) {
1532 /* Optimization: Don't schedule a delayed autosuspend if 1521 /* Optimization: Don't schedule a delayed autosuspend if
1533 * the timer is already running and the expiration time 1522 * the timer is already running and the expiration time
1534 * wouldn't change. 1523 * wouldn't change.
diff --git a/drivers/usb/core/sysfs.c b/drivers/usb/core/sysfs.c
index 43c002e3a9aa..b65c1eaf3aba 100644
--- a/drivers/usb/core/sysfs.c
+++ b/drivers/usb/core/sysfs.c
@@ -389,7 +389,7 @@ show_level(struct device *dev, struct device_attribute *attr, char *buf)
389 struct usb_device *udev = to_usb_device(dev); 389 struct usb_device *udev = to_usb_device(dev);
390 const char *p = auto_string; 390 const char *p = auto_string;
391 391
392 if (udev->state != USB_STATE_SUSPENDED && udev->autosuspend_disabled) 392 if (udev->state != USB_STATE_SUSPENDED && !udev->dev.power.runtime_auto)
393 p = on_string; 393 p = on_string;
394 return sprintf(buf, "%s\n", p); 394 return sprintf(buf, "%s\n", p);
395} 395}
@@ -401,7 +401,7 @@ set_level(struct device *dev, struct device_attribute *attr,
401 struct usb_device *udev = to_usb_device(dev); 401 struct usb_device *udev = to_usb_device(dev);
402 int len = count; 402 int len = count;
403 char *cp; 403 char *cp;
404 int rc; 404 int rc = count;
405 405
406 cp = memchr(buf, '\n', count); 406 cp = memchr(buf, '\n', count);
407 if (cp) 407 if (cp)
@@ -411,17 +411,17 @@ set_level(struct device *dev, struct device_attribute *attr,
411 411
412 if (len == sizeof on_string - 1 && 412 if (len == sizeof on_string - 1 &&
413 strncmp(buf, on_string, len) == 0) 413 strncmp(buf, on_string, len) == 0)
414 rc = usb_disable_autosuspend(udev); 414 usb_disable_autosuspend(udev);
415 415
416 else if (len == sizeof auto_string - 1 && 416 else if (len == sizeof auto_string - 1 &&
417 strncmp(buf, auto_string, len) == 0) 417 strncmp(buf, auto_string, len) == 0)
418 rc = usb_enable_autosuspend(udev); 418 usb_enable_autosuspend(udev);
419 419
420 else 420 else
421 rc = -EINVAL; 421 rc = -EINVAL;
422 422
423 usb_unlock_device(udev); 423 usb_unlock_device(udev);
424 return (rc < 0 ? rc : count); 424 return rc;
425} 425}
426 426
427static DEVICE_ATTR(level, S_IRUGO | S_IWUSR, show_level, set_level); 427static DEVICE_ATTR(level, S_IRUGO | S_IWUSR, show_level, set_level);