From: Johan Hovold Date: Mon, 26 May 2014 17:23:28 +0000 (+0200) Subject: USB: usb_wwan: remove comment from close X-Git-Tag: v3.16-rc1~30^2~34^2~103 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9fdf7063ec9e239f309e79b65fc62fd8bfa9da5c;p=platform%2Fkernel%2Flinux-exynos.git USB: usb_wwan: remove comment from close Remove superfluous and cryptic comment from close. It should be obvious that we're balancing the autopm_put in open (and that operation already mentions the autopm_get done in the USB serial core). Signed-off-by: Johan Hovold Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/serial/usb_wwan.c b/drivers/usb/serial/usb_wwan.c index 45bc11b..5042faa 100644 --- a/drivers/usb/serial/usb_wwan.c +++ b/drivers/usb/serial/usb_wwan.c @@ -450,7 +450,6 @@ void usb_wwan_close(struct usb_serial_port *port) usb_kill_urb(portdata->out_urbs[i]); usb_kill_urb(port->interrupt_in_urb); - /* balancing - important as an error cannot be handled*/ usb_autopm_get_interface_no_resume(serial->interface); } EXPORT_SYMBOL(usb_wwan_close);