diff options
author | Oliver Neukum <[email protected]> | 2011-03-18 12:44:17 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2011-03-23 13:16:06 -0700 |
commit | 97ac01d8f1b8d1c9e5af32c2813ba771835961f9 (patch) | |
tree | c3aafd90f3ca9afd4bd67daadf515879c11ff54d | |
parent | adaa3c6342b249548ea830fe8e02aa5b45be8688 (diff) |
usb: wwan: fix compilation without CONFIG_PM_RUNTIME
The pm usage counter must be accessed with the proper wrappers
to allow compilation under all configurations.
Signed-off-by: Oliver Neukum <[email protected]>
Reported-by: Eric Dumazet <[email protected]>
Reported-by: Tao Ma <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/usb/serial/usb_wwan.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/usb/serial/usb_wwan.c b/drivers/usb/serial/usb_wwan.c index a65ddd543869..e4fad5e643d7 100644 --- a/drivers/usb/serial/usb_wwan.c +++ b/drivers/usb/serial/usb_wwan.c @@ -698,8 +698,7 @@ static void play_delayed(struct usb_serial_port *port) /* we have to throw away the rest */ do { unbusy_queued_urb(urb, portdata); - //extremely dirty - atomic_dec(&port->serial->interface->dev.power.usage_count); + usb_autopm_put_interface_no_suspend(port->serial->interface); } while ((urb = usb_get_from_anchor(&portdata->delayed))); break; } |