]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
USB: serial: export generic throttle and unthrottle
authorJohan Hovold <jhovold@gmail.com>
Wed, 17 Mar 2010 22:05:59 +0000 (23:05 +0100)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 20 May 2010 20:21:34 +0000 (13:21 -0700)
Allow drivers to use the generic throttle and unthrottle implementation.
This makes sense for drivers using the generic read functionality.

Note that drivers need to set these explicitly in order to enable them
(i.e., we do not set them at port probe if not defined).

Signed-off-by: Johan Hovold <jhovold@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/usb/serial/generic.c

index 176f1257b6643dcac7152fb11b106709fd847f6c..789a5af842a9a36bff783f806892ca6665c2d506 100644 (file)
@@ -517,6 +517,7 @@ void usb_serial_generic_throttle(struct tty_struct *tty)
        port->throttle_req = 1;
        spin_unlock_irqrestore(&port->lock, flags);
 }
+EXPORT_SYMBOL_GPL(usb_serial_generic_throttle);
 
 void usb_serial_generic_unthrottle(struct tty_struct *tty)
 {
@@ -534,6 +535,7 @@ void usb_serial_generic_unthrottle(struct tty_struct *tty)
        if (was_throttled)
                usb_serial_generic_submit_read_urb(port, GFP_KERNEL);
 }
+EXPORT_SYMBOL_GPL(usb_serial_generic_unthrottle);
 
 #ifdef CONFIG_MAGIC_SYSRQ
 int usb_serial_handle_sysrq_char(struct tty_struct *tty,