提交 e19b2560 编写于 作者: A Alan Cox 提交者: Linus Torvalds

tty-usb-mct-u232: Coding style

Signed-off-by: NAlan Cox <alan@redhat.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 b31f658b
...@@ -33,10 +33,11 @@ ...@@ -33,10 +33,11 @@
* - Fixed an endianess problem with the baudrate selection for PowerPC. * - Fixed an endianess problem with the baudrate selection for PowerPC.
* *
* 06-Dec-2001 Martin Hamilton <martinh@gnu.org> * 06-Dec-2001 Martin Hamilton <martinh@gnu.org>
* Added support for the Belkin F5U109 DB9 adaptor * - Added support for the Belkin F5U109 DB9 adaptor
* *
* 30-May-2001 Greg Kroah-Hartman * 30-May-2001 Greg Kroah-Hartman
* switched from using spinlock to a semaphore, which fixes lots of problems. * - switched from using spinlock to a semaphore, which fixes lots of
* problems.
* *
* 04-May-2001 Stelian Pop * 04-May-2001 Stelian Pop
* - Set the maximum bulk output size for Sitecom U232-P25 model to 16 bytes * - Set the maximum bulk output size for Sitecom U232-P25 model to 16 bytes
...@@ -59,7 +60,7 @@ ...@@ -59,7 +60,7 @@
* (lots of things will change if/when the usb-serial core changes to * (lots of things will change if/when the usb-serial core changes to
* handle these issues. * handle these issues.
* *
* 27-Nov-2000 Wolfgang Grandegger * 27-Nov-2000 Wolfgang Grandegge
* A version for kernel 2.4.0-test10 released to the Linux community * A version for kernel 2.4.0-test10 released to the Linux community
* (via linux-usb-devel). * (via linux-usb-devel).
*/ */
...@@ -73,7 +74,7 @@ ...@@ -73,7 +74,7 @@
#include <linux/tty_flip.h> #include <linux/tty_flip.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/spinlock.h> #include <linux/spinlock.h>
#include <asm/uaccess.h> #include <linux/uaccess.h>
#include <linux/usb.h> #include <linux/usb.h>
#include <linux/usb/serial.h> #include <linux/usb/serial.h>
#include "mct_u232.h" #include "mct_u232.h"
...@@ -90,27 +91,21 @@ static int debug; ...@@ -90,27 +91,21 @@ static int debug;
/* /*
* Function prototypes * Function prototypes
*/ */
static int mct_u232_startup (struct usb_serial *serial); static int mct_u232_startup(struct usb_serial *serial);
static void mct_u232_shutdown (struct usb_serial *serial); static void mct_u232_shutdown(struct usb_serial *serial);
static int mct_u232_open (struct tty_struct *tty, static int mct_u232_open(struct tty_struct *tty,
struct usb_serial_port *port, struct usb_serial_port *port, struct file *filp);
struct file *filp); static void mct_u232_close(struct tty_struct *tty,
static void mct_u232_close (struct tty_struct *tty, struct usb_serial_port *port, struct file *filp);
struct usb_serial_port *port, static void mct_u232_read_int_callback(struct urb *urb);
struct file *filp); static void mct_u232_set_termios(struct tty_struct *tty,
static void mct_u232_read_int_callback (struct urb *urb); struct usb_serial_port *port, struct ktermios *old);
static void mct_u232_set_termios (struct tty_struct *tty, static void mct_u232_break_ctl(struct tty_struct *tty, int break_state);
struct usb_serial_port *port, static int mct_u232_tiocmget(struct tty_struct *tty, struct file *file);
struct ktermios * old); static int mct_u232_tiocmset(struct tty_struct *tty, struct file *file,
static void mct_u232_break_ctl (struct tty_struct *tty, unsigned int set, unsigned int clear);
int break_state ); static void mct_u232_throttle(struct tty_struct *tty);
static int mct_u232_tiocmget (struct tty_struct *tty, static void mct_u232_unthrottle(struct tty_struct *tty);
struct file *file);
static int mct_u232_tiocmset (struct tty_struct *tty,
struct file *file, unsigned int set,
unsigned int clear);
static void mct_u232_throttle (struct tty_struct *tty);
static void mct_u232_unthrottle (struct tty_struct *tty);
/* /*
...@@ -124,7 +119,7 @@ static struct usb_device_id id_table_combined [] = { ...@@ -124,7 +119,7 @@ static struct usb_device_id id_table_combined [] = {
{ } /* Terminating entry */ { } /* Terminating entry */
}; };
MODULE_DEVICE_TABLE (usb, id_table_combined); MODULE_DEVICE_TABLE(usb, id_table_combined);
static struct usb_driver mct_u232_driver = { static struct usb_driver mct_u232_driver = {
.name = "mct_u232", .name = "mct_u232",
...@@ -178,23 +173,34 @@ struct mct_u232_private { ...@@ -178,23 +173,34 @@ struct mct_u232_private {
* Later day 2.6.0-test kernels have new baud rates like B230400 which * Later day 2.6.0-test kernels have new baud rates like B230400 which
* we do not know how to support. We ignore them for the moment. * we do not know how to support. We ignore them for the moment.
*/ */
static int mct_u232_calculate_baud_rate(struct usb_serial *serial, speed_t value, speed_t *result) static int mct_u232_calculate_baud_rate(struct usb_serial *serial,
speed_t value, speed_t *result)
{ {
*result = value; *result = value;
if (le16_to_cpu(serial->dev->descriptor.idProduct) == MCT_U232_SITECOM_PID if (le16_to_cpu(serial->dev->descriptor.idProduct) == MCT_U232_SITECOM_PID
|| le16_to_cpu(serial->dev->descriptor.idProduct) == MCT_U232_BELKIN_F5U109_PID) { || le16_to_cpu(serial->dev->descriptor.idProduct) == MCT_U232_BELKIN_F5U109_PID) {
switch (value) { switch (value) {
case 300: return 0x01; case 300:
case 600: return 0x02; /* this one not tested */ return 0x01;
case 1200: return 0x03; case 600:
case 2400: return 0x04; return 0x02; /* this one not tested */
case 4800: return 0x06; case 1200:
case 9600: return 0x08; return 0x03;
case 19200: return 0x09; case 2400:
case 38400: return 0x0a; return 0x04;
case 57600: return 0x0b; case 4800:
case 115200: return 0x0c; return 0x06;
case 9600:
return 0x08;
case 19200:
return 0x09;
case 38400:
return 0x0a;
case 57600:
return 0x0b;
case 115200:
return 0x0c;
default: default:
*result = 9600; *result = 9600;
return 0x08; return 0x08;
...@@ -231,7 +237,8 @@ static int mct_u232_set_baud_rate(struct tty_struct *tty, ...@@ -231,7 +237,8 @@ static int mct_u232_set_baud_rate(struct tty_struct *tty,
unsigned char cts_enable_byte = 0; unsigned char cts_enable_byte = 0;
speed_t speed; speed_t speed;
divisor = cpu_to_le32(mct_u232_calculate_baud_rate(serial, value, &speed)); divisor = cpu_to_le32(mct_u232_calculate_baud_rate(serial, value,
&speed));
rc = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), rc = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
MCT_U232_SET_BAUD_RATE_REQUEST, MCT_U232_SET_BAUD_RATE_REQUEST,
...@@ -256,9 +263,9 @@ static int mct_u232_set_baud_rate(struct tty_struct *tty, ...@@ -256,9 +263,9 @@ static int mct_u232_set_baud_rate(struct tty_struct *tty,
whether data will be transmitted to a device which is not asserting whether data will be transmitted to a device which is not asserting
the 'CTS' signal. If the second message's data byte is zero, data the 'CTS' signal. If the second message's data byte is zero, data
will be transmitted even if 'CTS' is not asserted (i.e. no hardware will be transmitted even if 'CTS' is not asserted (i.e. no hardware
flow control). if the second message's data byte is nonzero (a value flow control). if the second message's data byte is nonzero (a
of 1 is used by this driver), data will not be transmitted to a device value of 1 is used by this driver), data will not be transmitted to
which is not asserting 'CTS'. a device which is not asserting 'CTS'.
*/ */
rc = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), rc = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
...@@ -270,11 +277,11 @@ static int mct_u232_set_baud_rate(struct tty_struct *tty, ...@@ -270,11 +277,11 @@ static int mct_u232_set_baud_rate(struct tty_struct *tty,
err("Sending USB device request code %d failed (error = %d)", err("Sending USB device request code %d failed (error = %d)",
MCT_U232_SET_UNKNOWN1_REQUEST, rc); MCT_U232_SET_UNKNOWN1_REQUEST, rc);
if (port && C_CRTSCTS(tty)) { if (port && C_CRTSCTS(tty))
cts_enable_byte = 1; cts_enable_byte = 1;
}
dbg("set_baud_rate: send second control message, data = %02X", cts_enable_byte); dbg("set_baud_rate: send second control message, data = %02X",
cts_enable_byte);
rc = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), rc = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
MCT_U232_SET_CTS_REQUEST, MCT_U232_SET_CTS_REQUEST,
MCT_U232_SET_REQUEST_TYPE, MCT_U232_SET_REQUEST_TYPE,
...@@ -324,7 +331,8 @@ static int mct_u232_set_modem_ctrl(struct usb_serial *serial, ...@@ -324,7 +331,8 @@ static int mct_u232_set_modem_ctrl(struct usb_serial *serial,
return rc; return rc;
} /* mct_u232_set_modem_ctrl */ } /* mct_u232_set_modem_ctrl */
static int mct_u232_get_modem_stat(struct usb_serial *serial, unsigned char *msr) static int mct_u232_get_modem_stat(struct usb_serial *serial,
unsigned char *msr)
{ {
int rc; int rc;
rc = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0), rc = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
...@@ -340,7 +348,8 @@ static int mct_u232_get_modem_stat(struct usb_serial *serial, unsigned char *msr ...@@ -340,7 +348,8 @@ static int mct_u232_get_modem_stat(struct usb_serial *serial, unsigned char *msr
return rc; return rc;
} /* mct_u232_get_modem_stat */ } /* mct_u232_get_modem_stat */
static void mct_u232_msr_to_state(unsigned int *control_state, unsigned char msr) static void mct_u232_msr_to_state(unsigned int *control_state,
unsigned char msr)
{ {
/* Translate Control Line states */ /* Translate Control Line states */
if (msr & MCT_U232_MSR_DSR) if (msr & MCT_U232_MSR_DSR)
...@@ -366,7 +375,7 @@ static void mct_u232_msr_to_state(unsigned int *control_state, unsigned char msr ...@@ -366,7 +375,7 @@ static void mct_u232_msr_to_state(unsigned int *control_state, unsigned char msr
* Driver's tty interface functions * Driver's tty interface functions
*/ */
static int mct_u232_startup (struct usb_serial *serial) static int mct_u232_startup(struct usb_serial *serial)
{ {
struct mct_u232_private *priv; struct mct_u232_private *priv;
struct usb_serial_port *port, *rport; struct usb_serial_port *port, *rport;
...@@ -388,18 +397,18 @@ static int mct_u232_startup (struct usb_serial *serial) ...@@ -388,18 +397,18 @@ static int mct_u232_startup (struct usb_serial *serial)
rport->interrupt_in_urb = NULL; rport->interrupt_in_urb = NULL;
port->read_urb->context = port; port->read_urb->context = port;
return (0); return 0;
} /* mct_u232_startup */ } /* mct_u232_startup */
static void mct_u232_shutdown (struct usb_serial *serial) static void mct_u232_shutdown(struct usb_serial *serial)
{ {
struct mct_u232_private *priv; struct mct_u232_private *priv;
int i; int i;
dbg("%s", __func__); dbg("%s", __func__);
for (i=0; i < serial->num_ports; ++i) { for (i = 0; i < serial->num_ports; ++i) {
/* My special items, the standard routines free my urbs */ /* My special items, the standard routines free my urbs */
priv = usb_get_serial_port_data(serial->port[i]); priv = usb_get_serial_port_data(serial->port[i]);
if (priv) { if (priv) {
...@@ -409,7 +418,7 @@ static void mct_u232_shutdown (struct usb_serial *serial) ...@@ -409,7 +418,7 @@ static void mct_u232_shutdown (struct usb_serial *serial)
} }
} /* mct_u232_shutdown */ } /* mct_u232_shutdown */
static int mct_u232_open (struct tty_struct *tty, static int mct_u232_open(struct tty_struct *tty,
struct usb_serial_port *port, struct file *filp) struct usb_serial_port *port, struct file *filp)
{ {
struct usb_serial *serial = port->serial; struct usb_serial *serial = port->serial;
...@@ -427,7 +436,8 @@ static int mct_u232_open (struct tty_struct *tty, ...@@ -427,7 +436,8 @@ static int mct_u232_open (struct tty_struct *tty,
* it seems to be able to accept only 16 bytes (and that's what * it seems to be able to accept only 16 bytes (and that's what
* SniffUSB says too...) * SniffUSB says too...)
*/ */
if (le16_to_cpu(serial->dev->descriptor.idProduct) == MCT_U232_SITECOM_PID) if (le16_to_cpu(serial->dev->descriptor.idProduct)
== MCT_U232_SITECOM_PID)
port->bulk_out_size = 16; port->bulk_out_size = 16;
/* Do a defined restart: the normal serial device seems to /* Do a defined restart: the normal serial device seems to
...@@ -512,7 +522,7 @@ static void mct_u232_close(struct tty_struct *tty, ...@@ -512,7 +522,7 @@ static void mct_u232_close(struct tty_struct *tty,
} /* mct_u232_close */ } /* mct_u232_close */
static void mct_u232_read_int_callback (struct urb *urb) static void mct_u232_read_int_callback(struct urb *urb)
{ {
struct usb_serial_port *port = urb->context; struct usb_serial_port *port = urb->context;
struct mct_u232_private *priv = usb_get_serial_port_data(port); struct mct_u232_private *priv = usb_get_serial_port_data(port);
...@@ -546,7 +556,8 @@ static void mct_u232_read_int_callback (struct urb *urb) ...@@ -546,7 +556,8 @@ static void mct_u232_read_int_callback (struct urb *urb)
} }
dbg("%s - port %d", __func__, port->number); dbg("%s - port %d", __func__, port->number);
usb_serial_debug_data(debug, &port->dev, __func__, urb->actual_length, data); usb_serial_debug_data(debug, &port->dev, __func__,
urb->actual_length, data);
/* /*
* Work-a-round: handle the 'usual' bulk-in pipe here * Work-a-round: handle the 'usual' bulk-in pipe here
...@@ -555,9 +566,8 @@ static void mct_u232_read_int_callback (struct urb *urb) ...@@ -555,9 +566,8 @@ static void mct_u232_read_int_callback (struct urb *urb)
int i; int i;
tty = port->port.tty; tty = port->port.tty;
if (urb->actual_length) { if (urb->actual_length) {
for (i = 0; i < urb->actual_length ; ++i) { for (i = 0; i < urb->actual_length ; ++i)
tty_insert_flip_char(tty, data[i], 0); tty_insert_flip_char(tty, data[i], 0);
}
tty_flip_buffer_push(tty); tty_flip_buffer_push(tty);
} }
goto exit; goto exit;
...@@ -574,7 +584,7 @@ static void mct_u232_read_int_callback (struct urb *urb) ...@@ -574,7 +584,7 @@ static void mct_u232_read_int_callback (struct urb *urb)
mct_u232_msr_to_state(&priv->control_state, priv->last_msr); mct_u232_msr_to_state(&priv->control_state, priv->last_msr);
#if 0 #if 0
/* Not yet handled. See belin_sa.c for further information */ /* Not yet handled. See belkin_sa.c for further information */
/* Now to report any errors */ /* Now to report any errors */
priv->last_lsr = data[MCT_U232_LSR_INDEX]; priv->last_lsr = data[MCT_U232_LSR_INDEX];
/* /*
...@@ -600,13 +610,13 @@ static void mct_u232_read_int_callback (struct urb *urb) ...@@ -600,13 +610,13 @@ static void mct_u232_read_int_callback (struct urb *urb)
#endif #endif
spin_unlock_irqrestore(&priv->lock, flags); spin_unlock_irqrestore(&priv->lock, flags);
exit: exit:
retval = usb_submit_urb (urb, GFP_ATOMIC); retval = usb_submit_urb(urb, GFP_ATOMIC);
if (retval) if (retval)
err ("%s - usb_submit_urb failed with result %d", err("%s - usb_submit_urb failed with result %d",
__func__, retval); __func__, retval);
} /* mct_u232_read_int_callback */ } /* mct_u232_read_int_callback */
static void mct_u232_set_termios (struct tty_struct *tty, static void mct_u232_set_termios(struct tty_struct *tty,
struct usb_serial_port *port, struct usb_serial_port *port,
struct ktermios *old_termios) struct ktermios *old_termios)
{ {
...@@ -641,7 +651,7 @@ static void mct_u232_set_termios (struct tty_struct *tty, ...@@ -641,7 +651,7 @@ static void mct_u232_set_termios (struct tty_struct *tty,
mct_u232_set_baud_rate(tty, serial, port, tty_get_baud_rate(tty)); mct_u232_set_baud_rate(tty, serial, port, tty_get_baud_rate(tty));
if ((cflag & CBAUD) == B0 ) { if ((cflag & CBAUD) == B0) {
dbg("%s: baud is B0", __func__); dbg("%s: baud is B0", __func__);
/* Drop RTS and DTR */ /* Drop RTS and DTR */
control_state &= ~(TIOCM_DTR | TIOCM_RTS); control_state &= ~(TIOCM_DTR | TIOCM_RTS);
...@@ -798,7 +808,7 @@ static void mct_u232_unthrottle(struct tty_struct *tty) ...@@ -798,7 +808,7 @@ static void mct_u232_unthrottle(struct tty_struct *tty)
} }
} }
static int __init mct_u232_init (void) static int __init mct_u232_init(void)
{ {
int retval; int retval;
retval = usb_serial_register(&mct_u232_device); retval = usb_serial_register(&mct_u232_device);
...@@ -816,18 +826,17 @@ static int __init mct_u232_init (void) ...@@ -816,18 +826,17 @@ static int __init mct_u232_init (void)
} }
static void __exit mct_u232_exit (void) static void __exit mct_u232_exit(void)
{ {
usb_deregister (&mct_u232_driver); usb_deregister(&mct_u232_driver);
usb_serial_deregister (&mct_u232_device); usb_serial_deregister(&mct_u232_device);
} }
module_init(mct_u232_init);
module_init (mct_u232_init);
module_exit(mct_u232_exit); module_exit(mct_u232_exit);
MODULE_AUTHOR( DRIVER_AUTHOR ); MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_DESCRIPTION( DRIVER_DESC ); MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
module_param(debug, bool, S_IRUGO | S_IWUSR); module_param(debug, bool, S_IRUGO | S_IWUSR);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册