|
@@ -1246,7 +1246,7 @@ static void hso_std_serial_read_bulk_callback(struct urb *urb)
|
|
|
* This needs to be a tasklet otherwise we will
|
|
|
* end up recursively calling this function.
|
|
|
*/
|
|
|
-void hso_unthrottle_tasklet(struct hso_serial *serial)
|
|
|
+static void hso_unthrottle_tasklet(struct hso_serial *serial)
|
|
|
{
|
|
|
unsigned long flags;
|
|
|
|
|
@@ -1265,7 +1265,7 @@ static void hso_unthrottle(struct tty_struct *tty)
|
|
|
tasklet_hi_schedule(&serial->unthrottle_tasklet);
|
|
|
}
|
|
|
|
|
|
-void hso_unthrottle_workfunc(struct work_struct *work)
|
|
|
+static void hso_unthrottle_workfunc(struct work_struct *work)
|
|
|
{
|
|
|
struct hso_serial *serial =
|
|
|
container_of(work, struct hso_serial,
|
|
@@ -1464,9 +1464,9 @@ static int hso_serial_chars_in_buffer(struct tty_struct *tty)
|
|
|
|
|
|
return chars;
|
|
|
}
|
|
|
-int tiocmget_submit_urb(struct hso_serial *serial,
|
|
|
- struct hso_tiocmget *tiocmget,
|
|
|
- struct usb_device *usb)
|
|
|
+static int tiocmget_submit_urb(struct hso_serial *serial,
|
|
|
+ struct hso_tiocmget *tiocmget,
|
|
|
+ struct usb_device *usb)
|
|
|
{
|
|
|
int result;
|
|
|
|