aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb
diff options
context:
space:
mode:
authorAlan Cox <alan@linux.intel.com>2012-07-24 10:59:01 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-08-10 12:53:30 -0700
commit6b9563a714138dc2377c500e588e31f7166c92f0 (patch)
tree7f44c37778c3ca5fa7348f4049ffec4dc6419ec6 /drivers/usb
parentserqt_usb2: drag screaming into the 21st century (diff)
downloadlinux-dev-6b9563a714138dc2377c500e588e31f7166c92f0.tar.xz
linux-dev-6b9563a714138dc2377c500e588e31f7166c92f0.zip
tty: fix the metro-usb change I messed up
Fixes the leak of a tty kref that Jiri pointed out. Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/serial/metro-usb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/serial/metro-usb.c b/drivers/usb/serial/metro-usb.c
index 7ae9af6b2a54..2b0627b5fe2c 100644
--- a/drivers/usb/serial/metro-usb.c
+++ b/drivers/usb/serial/metro-usb.c
@@ -136,8 +136,8 @@ static void metrousb_read_int_callback(struct urb *urb)
/* Force the data to the tty layer. */
tty_flip_buffer_push(tty);
- tty_kref_put(tty);
}
+ tty_kref_put(tty);
/* Set any port variables. */
spin_lock_irqsave(&metro_priv->lock, flags);