Commit 4da1a17d authored by Alan Cox's avatar Alan Cox Committed by Linus Torvalds

tty-usb-mos7720: Coding style

Signed-off-by: default avatarAlan Cox <alan@redhat.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 880af9db
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
#include <linux/serial_reg.h> #include <linux/serial_reg.h>
#include <linux/usb.h> #include <linux/usb.h>
#include <linux/usb/serial.h> #include <linux/usb/serial.h>
#include <asm/uaccess.h> #include <linux/uaccess.h>
/* /*
...@@ -64,8 +64,7 @@ ...@@ -64,8 +64,7 @@
#define URB_TRANSFER_BUFFER_SIZE 32 /* URB Size */ #define URB_TRANSFER_BUFFER_SIZE 32 /* URB Size */
/* This structure holds all of the local port information */ /* This structure holds all of the local port information */
struct moschip_port struct moschip_port {
{
__u8 shadowLCR; /* last LCR value received */ __u8 shadowLCR; /* last LCR value received */
__u8 shadowMCR; /* last MCR value received */ __u8 shadowMCR; /* last MCR value received */
__u8 shadowMSR; /* last MSR value received */ __u8 shadowMSR; /* last MSR value received */
...@@ -76,8 +75,7 @@ struct moschip_port ...@@ -76,8 +75,7 @@ struct moschip_port
}; };
/* This structure holds all of the individual serial device information */ /* This structure holds all of the individual serial device information */
struct moschip_serial struct moschip_serial {
{
int interrupt_started; int interrupt_started;
}; };
...@@ -88,7 +86,7 @@ static int debug; ...@@ -88,7 +86,7 @@ static int debug;
#define MOSCHIP_DEVICE_ID_7715 0x7715 #define MOSCHIP_DEVICE_ID_7715 0x7715
static struct usb_device_id moschip_port_id_table [] = { static struct usb_device_id moschip_port_id_table [] = {
{ USB_DEVICE(USB_VENDOR_ID_MOSCHIP,MOSCHIP_DEVICE_ID_7720) }, { USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7720) },
{ } /* terminating entry */ { } /* terminating entry */
}; };
MODULE_DEVICE_TABLE(usb, moschip_port_id_table); MODULE_DEVICE_TABLE(usb, moschip_port_id_table);
...@@ -108,7 +106,7 @@ static void mos7720_interrupt_callback(struct urb *urb) ...@@ -108,7 +106,7 @@ static void mos7720_interrupt_callback(struct urb *urb)
__u8 sp1; __u8 sp1;
__u8 sp2; __u8 sp2;
dbg("%s"," : Entering\n"); dbg("%s", " : Entering\n");
switch (status) { switch (status) {
case 0: case 0:
...@@ -208,7 +206,7 @@ static void mos7720_bulk_in_callback(struct urb *urb) ...@@ -208,7 +206,7 @@ static void mos7720_bulk_in_callback(struct urb *urb)
mos7720_port = urb->context; mos7720_port = urb->context;
if (!mos7720_port) { if (!mos7720_port) {
dbg("%s","NULL mos7720_port pointer \n"); dbg("%s", "NULL mos7720_port pointer \n");
return ; return ;
} }
...@@ -284,17 +282,16 @@ static int send_mos_cmd(struct usb_serial *serial, __u8 request, __u16 value, ...@@ -284,17 +282,16 @@ static int send_mos_cmd(struct usb_serial *serial, __u8 request, __u16 value,
__u16 size = 0x0000; __u16 size = 0x0000;
if (value < MOS_MAX_PORT) { if (value < MOS_MAX_PORT) {
if (product == MOSCHIP_DEVICE_ID_7715) { if (product == MOSCHIP_DEVICE_ID_7715)
value = value*0x100+0x100; value = value*0x100+0x100;
} else { else
value = value*0x100+0x200; value = value*0x100+0x200;
}
} else { } else {
value = 0x0000; value = 0x0000;
if ((product == MOSCHIP_DEVICE_ID_7715) && if ((product == MOSCHIP_DEVICE_ID_7715) &&
(index != 0x08)) { (index != 0x08)) {
dbg("serial->product== MOSCHIP_DEVICE_ID_7715"); dbg("serial->product== MOSCHIP_DEVICE_ID_7715");
//index = 0x01 ; /* index = 0x01 ; */
} }
} }
...@@ -308,20 +305,20 @@ static int send_mos_cmd(struct usb_serial *serial, __u8 request, __u16 value, ...@@ -308,20 +305,20 @@ static int send_mos_cmd(struct usb_serial *serial, __u8 request, __u16 value,
request = (__u8)MOS_READ; request = (__u8)MOS_READ;
requesttype = (__u8)0xC0; requesttype = (__u8)0xC0;
size = 0x01; size = 0x01;
pipe = usb_rcvctrlpipe(serial->dev,0); pipe = usb_rcvctrlpipe(serial->dev, 0);
} }
status = usb_control_msg(serial->dev, pipe, request, requesttype, status = usb_control_msg(serial->dev, pipe, request, requesttype,
value, index, data, size, MOS_WDR_TIMEOUT); value, index, data, size, MOS_WDR_TIMEOUT);
if (status < 0) if (status < 0)
dbg("Command Write failed Value %x index %x\n",value,index); dbg("Command Write failed Value %x index %x\n", value, index);
return status; return status;
} }
static int mos7720_open(struct tty_struct *tty, static int mos7720_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; struct usb_serial *serial;
struct usb_serial_port *port0; struct usb_serial_port *port0;
...@@ -352,7 +349,7 @@ static int mos7720_open(struct tty_struct *tty, ...@@ -352,7 +349,7 @@ static int mos7720_open(struct tty_struct *tty,
/* Initialising the write urb pool */ /* Initialising the write urb pool */
for (j = 0; j < NUM_URBS; ++j) { for (j = 0; j < NUM_URBS; ++j) {
urb = usb_alloc_urb(0,GFP_KERNEL); urb = usb_alloc_urb(0, GFP_KERNEL);
mos7720_port->write_urb_pool[j] = urb; mos7720_port->write_urb_pool[j] = urb;
if (urb == NULL) { if (urb == NULL) {
...@@ -386,7 +383,7 @@ static int mos7720_open(struct tty_struct *tty, ...@@ -386,7 +383,7 @@ static int mos7720_open(struct tty_struct *tty,
*/ */
port_number = port->number - port->serial->minor; port_number = port->number - port->serial->minor;
send_mos_cmd(port->serial, MOS_READ, port_number, UART_LSR, &data); send_mos_cmd(port->serial, MOS_READ, port_number, UART_LSR, &data);
dbg("SS::%p LSR:%x\n",mos7720_port, data); dbg("SS::%p LSR:%x\n", mos7720_port, data);
dbg("Check:Sending Command .........."); dbg("Check:Sending Command ..........");
...@@ -421,7 +418,8 @@ static int mos7720_open(struct tty_struct *tty, ...@@ -421,7 +418,8 @@ static int mos7720_open(struct tty_struct *tty,
data = 0x03; data = 0x03;
send_mos_cmd(serial, MOS_WRITE, MOS_MAX_PORT, port_number + 1, &data); send_mos_cmd(serial, MOS_WRITE, MOS_MAX_PORT, port_number + 1, &data);
data = 0x00; data = 0x00;
send_mos_cmd(port->serial, MOS_WRITE, MOS_MAX_PORT, port_number + 1, &data); send_mos_cmd(port->serial, MOS_WRITE, MOS_MAX_PORT,
port_number + 1, &data);
*/ */
data = 0x00; data = 0x00;
send_mos_cmd(serial, MOS_READ, MOS_MAX_PORT, 0x08, &data); send_mos_cmd(serial, MOS_READ, MOS_MAX_PORT, 0x08, &data);
...@@ -490,8 +488,8 @@ static int mos7720_open(struct tty_struct *tty, ...@@ -490,8 +488,8 @@ static int mos7720_open(struct tty_struct *tty,
mos7720_bulk_in_callback, mos7720_port); mos7720_bulk_in_callback, mos7720_port);
response = usb_submit_urb(port->read_urb, GFP_KERNEL); response = usb_submit_urb(port->read_urb, GFP_KERNEL);
if (response) if (response)
dev_err(&port->dev, dev_err(&port->dev, "%s - Error %d submitting read urb\n",
"%s - Error %d submitting read urb\n", __func__, response); __func__, response);
/* initialize our icount structure */ /* initialize our icount structure */
memset(&(mos7720_port->icount), 0x00, sizeof(mos7720_port->icount)); memset(&(mos7720_port->icount), 0x00, sizeof(mos7720_port->icount));
...@@ -530,7 +528,8 @@ static int mos7720_chars_in_buffer(struct tty_struct *tty) ...@@ -530,7 +528,8 @@ static int mos7720_chars_in_buffer(struct tty_struct *tty)
} }
for (i = 0; i < NUM_URBS; ++i) { for (i = 0; i < NUM_URBS; ++i) {
if (mos7720_port->write_urb_pool[i] && mos7720_port->write_urb_pool[i]->status == -EINPROGRESS) if (mos7720_port->write_urb_pool[i] &&
mos7720_port->write_urb_pool[i]->status == -EINPROGRESS)
chars += URB_TRANSFER_BUFFER_SIZE; chars += URB_TRANSFER_BUFFER_SIZE;
} }
dbg("%s - returns %d", __func__, chars); dbg("%s - returns %d", __func__, chars);
...@@ -576,12 +575,12 @@ static void mos7720_close(struct tty_struct *tty, ...@@ -576,12 +575,12 @@ static void mos7720_close(struct tty_struct *tty,
* been disconnected */ * been disconnected */
if (!serial->disconnected) { if (!serial->disconnected) {
data = 0x00; data = 0x00;
send_mos_cmd(serial, MOS_WRITE, port->number - port->serial->minor, send_mos_cmd(serial, MOS_WRITE,
0x04, &data); port->number - port->serial->minor, 0x04, &data);
data = 0x00; data = 0x00;
send_mos_cmd(serial, MOS_WRITE, port->number - port->serial->minor, send_mos_cmd(serial, MOS_WRITE,
0x01, &data); port->number - port->serial->minor, 0x01, &data);
} }
mutex_unlock(&serial->disc_mutex); mutex_unlock(&serial->disc_mutex);
mos7720_port->open = 0; mos7720_port->open = 0;
...@@ -640,7 +639,8 @@ static int mos7720_write_room(struct tty_struct *tty) ...@@ -640,7 +639,8 @@ static int mos7720_write_room(struct tty_struct *tty)
/* FIXME: Locking */ /* FIXME: Locking */
for (i = 0; i < NUM_URBS; ++i) { for (i = 0; i < NUM_URBS; ++i) {
if (mos7720_port->write_urb_pool[i] && mos7720_port->write_urb_pool[i]->status != -EINPROGRESS) if (mos7720_port->write_urb_pool[i] &&
mos7720_port->write_urb_pool[i]->status != -EINPROGRESS)
room += URB_TRANSFER_BUFFER_SIZE; room += URB_TRANSFER_BUFFER_SIZE;
} }
...@@ -675,9 +675,10 @@ static int mos7720_write(struct tty_struct *tty, struct usb_serial_port *port, ...@@ -675,9 +675,10 @@ static int mos7720_write(struct tty_struct *tty, struct usb_serial_port *port,
urb = NULL; urb = NULL;
for (i = 0; i < NUM_URBS; ++i) { for (i = 0; i < NUM_URBS; ++i) {
if (mos7720_port->write_urb_pool[i] && mos7720_port->write_urb_pool[i]->status != -EINPROGRESS) { if (mos7720_port->write_urb_pool[i] &&
mos7720_port->write_urb_pool[i]->status != -EINPROGRESS) {
urb = mos7720_port->write_urb_pool[i]; urb = mos7720_port->write_urb_pool[i];
dbg("URB:%d",i); dbg("URB:%d", i);
break; break;
} }
} }
...@@ -695,7 +696,7 @@ static int mos7720_write(struct tty_struct *tty, struct usb_serial_port *port, ...@@ -695,7 +696,7 @@ static int mos7720_write(struct tty_struct *tty, struct usb_serial_port *port,
goto exit; goto exit;
} }
} }
transfer_size = min (count, URB_TRANSFER_BUFFER_SIZE); transfer_size = min(count, URB_TRANSFER_BUFFER_SIZE);
memcpy(urb->transfer_buffer, current_position, transfer_size); memcpy(urb->transfer_buffer, current_position, transfer_size);
usb_serial_debug_data(debug, &port->dev, __func__, transfer_size, usb_serial_debug_data(debug, &port->dev, __func__, transfer_size,
...@@ -709,7 +710,7 @@ static int mos7720_write(struct tty_struct *tty, struct usb_serial_port *port, ...@@ -709,7 +710,7 @@ static int mos7720_write(struct tty_struct *tty, struct usb_serial_port *port,
mos7720_bulk_out_data_callback, mos7720_port); mos7720_bulk_out_data_callback, mos7720_port);
/* send it down the pipe */ /* send it down the pipe */
status = usb_submit_urb(urb,GFP_ATOMIC); status = usb_submit_urb(urb, GFP_ATOMIC);
if (status) { if (status) {
err("%s - usb_submit_urb(write bulk) failed with status = %d", err("%s - usb_submit_urb(write bulk) failed with status = %d",
__func__, status); __func__, status);
...@@ -839,7 +840,7 @@ static int set_higher_rates(struct moschip_port *mos7720_port, ...@@ -839,7 +840,7 @@ static int set_higher_rates(struct moschip_port *mos7720_port,
***********************************************/ ***********************************************/
data = baud * 0x10; data = baud * 0x10;
send_mos_cmd(serial, MOS_WRITE, MOS_MAX_PORT, port_number + 1,&data); send_mos_cmd(serial, MOS_WRITE, MOS_MAX_PORT, port_number + 1, &data);
data = 0x003; data = 0x003;
send_mos_cmd(serial, MOS_READ, MOS_MAX_PORT, 0x08, &data); send_mos_cmd(serial, MOS_READ, MOS_MAX_PORT, 0x08, &data);
...@@ -873,8 +874,7 @@ static int set_higher_rates(struct moschip_port *mos7720_port, ...@@ -873,8 +874,7 @@ static int set_higher_rates(struct moschip_port *mos7720_port,
} }
/* baud rate information */ /* baud rate information */
struct divisor_table_entry struct divisor_table_entry {
{
__u32 baudrate; __u32 baudrate;
__u16 divisor; __u16 divisor;
}; };
...@@ -936,7 +936,7 @@ static int calc_baud_rate_divisor(int baudrate, int *divisor) ...@@ -936,7 +936,7 @@ static int calc_baud_rate_divisor(int baudrate, int *divisor)
custom++; custom++;
*divisor = custom; *divisor = custom;
dbg("Baud %d = %d",baudrate, custom); dbg("Baud %d = %d", baudrate, custom);
return 0; return 0;
} }
...@@ -1095,13 +1095,15 @@ static void change_port_settings(struct tty_struct *tty, ...@@ -1095,13 +1095,15 @@ static void change_port_settings(struct tty_struct *tty,
#define LCR_PAR_MASK 0x38 /* Mask for parity field */ #define LCR_PAR_MASK 0x38 /* Mask for parity field */
/* Update the LCR with the correct value */ /* Update the LCR with the correct value */
mos7720_port->shadowLCR &= ~(LCR_BITS_MASK | LCR_STOP_MASK | LCR_PAR_MASK); mos7720_port->shadowLCR &=
~(LCR_BITS_MASK | LCR_STOP_MASK | LCR_PAR_MASK);
mos7720_port->shadowLCR |= (lData | lParity | lStop); mos7720_port->shadowLCR |= (lData | lParity | lStop);
/* Disable Interrupts */ /* Disable Interrupts */
data = 0x00; data = 0x00;
send_mos_cmd(serial,MOS_WRITE,port->number - port->serial->minor, UART_IER, &data); send_mos_cmd(serial, MOS_WRITE, port->number - port->serial->minor,
UART_IER, &data);
data = 0x00; data = 0x00;
send_mos_cmd(serial, MOS_WRITE, port_number, UART_FCR, &data); send_mos_cmd(serial, MOS_WRITE, port_number, UART_FCR, &data);
...@@ -1126,7 +1128,6 @@ static void change_port_settings(struct tty_struct *tty, ...@@ -1126,7 +1128,6 @@ static void change_port_settings(struct tty_struct *tty,
if (cflag & CRTSCTS) { if (cflag & CRTSCTS) {
mos7720_port->shadowMCR |= (UART_MCR_XONANY); mos7720_port->shadowMCR |= (UART_MCR_XONANY);
/* To set hardware flow control to the specified * /* To set hardware flow control to the specified *
* serial port, in SP1/2_CONTROL_REG */ * serial port, in SP1/2_CONTROL_REG */
if (port->number) { if (port->number) {
...@@ -1207,7 +1208,7 @@ static void mos7720_set_termios(struct tty_struct *tty, ...@@ -1207,7 +1208,7 @@ static void mos7720_set_termios(struct tty_struct *tty,
return; return;
} }
dbg("%s\n","setting termios - ASPIRE"); dbg("%s\n", "setting termios - ASPIRE");
cflag = tty->termios->c_cflag; cflag = tty->termios->c_cflag;
...@@ -1224,12 +1225,12 @@ static void mos7720_set_termios(struct tty_struct *tty, ...@@ -1224,12 +1225,12 @@ static void mos7720_set_termios(struct tty_struct *tty,
/* change the port settings to the new ones specified */ /* change the port settings to the new ones specified */
change_port_settings(tty, mos7720_port, old_termios); change_port_settings(tty, mos7720_port, old_termios);
if(!port->read_urb) { if (!port->read_urb) {
dbg("%s","URB KILLED !!!!!\n"); dbg("%s", "URB KILLED !!!!!\n");
return; return;
} }
if(port->read_urb->status != -EINPROGRESS) { if (port->read_urb->status != -EINPROGRESS) {
port->read_urb->dev = serial->dev; port->read_urb->dev = serial->dev;
status = usb_submit_urb(port->read_urb, GFP_ATOMIC); status = usb_submit_urb(port->read_urb, GFP_ATOMIC);
if (status) if (status)
...@@ -1249,8 +1250,8 @@ static void mos7720_set_termios(struct tty_struct *tty, ...@@ -1249,8 +1250,8 @@ static void mos7720_set_termios(struct tty_struct *tty,
* transmit holding register is empty. This functionality * transmit holding register is empty. This functionality
* allows an RS485 driver to be written in user space. * allows an RS485 driver to be written in user space.
*/ */
static int get_lsr_info(struct tty_struct *tty, struct moschip_port *mos7720_port, static int get_lsr_info(struct tty_struct *tty,
unsigned int __user *value) struct moschip_port *mos7720_port, unsigned int __user *value)
{ {
int count; int count;
unsigned int result = 0; unsigned int result = 0;
...@@ -1301,7 +1302,7 @@ static int set_modem_info(struct moschip_port *mos7720_port, unsigned int cmd, ...@@ -1301,7 +1302,7 @@ static int set_modem_info(struct moschip_port *mos7720_port, unsigned int cmd,
if (mos7720_port == NULL) if (mos7720_port == NULL)
return -1; return -1;
port = (struct usb_serial_port*)mos7720_port->port; port = (struct usb_serial_port *)mos7720_port->port;
mcr = mos7720_port->shadowMCR; mcr = mos7720_port->shadowMCR;
if (copy_from_user(&arg, value, sizeof(int))) if (copy_from_user(&arg, value, sizeof(int)))
...@@ -1417,15 +1418,16 @@ static int mos7720_ioctl(struct tty_struct *tty, struct file *file, ...@@ -1417,15 +1418,16 @@ static int mos7720_ioctl(struct tty_struct *tty, struct file *file,
case TIOCSERGETLSR: case TIOCSERGETLSR:
dbg("%s (%d) TIOCSERGETLSR", __func__, port->number); dbg("%s (%d) TIOCSERGETLSR", __func__, port->number);
return get_lsr_info(tty, mos7720_port, (unsigned int __user *)arg); return get_lsr_info(tty, mos7720_port,
(unsigned int __user *)arg);
return 0; return 0;
/* FIXME: These should be using the mode methods */ /* FIXME: These should be using the mode methods */
case TIOCMBIS: case TIOCMBIS:
case TIOCMBIC: case TIOCMBIC:
case TIOCMSET: case TIOCMSET:
dbg("%s (%d) TIOCMSET/TIOCMBIC/TIOCMSET", __func__, dbg("%s (%d) TIOCMSET/TIOCMBIC/TIOCMSET",
port->number); __func__, port->number);
return set_modem_info(mos7720_port, cmd, return set_modem_info(mos7720_port, cmd,
(unsigned int __user *)arg); (unsigned int __user *)arg);
...@@ -1452,7 +1454,7 @@ static int mos7720_ioctl(struct tty_struct *tty, struct file *file, ...@@ -1452,7 +1454,7 @@ static int mos7720_ioctl(struct tty_struct *tty, struct file *file,
if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) || if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) || ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) || ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
((arg & TIOCM_CTS) && (cnow.cts != cprev.cts)) ) { ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) {
return 0; return 0;
} }
cprev = cnow; cprev = cnow;
...@@ -1475,7 +1477,7 @@ static int mos7720_ioctl(struct tty_struct *tty, struct file *file, ...@@ -1475,7 +1477,7 @@ static int mos7720_ioctl(struct tty_struct *tty, struct file *file,
icount.buf_overrun = cnow.buf_overrun; icount.buf_overrun = cnow.buf_overrun;
dbg("%s (%d) TIOCGICOUNT RX=%d, TX=%d", __func__, dbg("%s (%d) TIOCGICOUNT RX=%d, TX=%d", __func__,
port->number, icount.rx, icount.tx ); port->number, icount.rx, icount.tx);
if (copy_to_user((void __user *)arg, &icount, sizeof(icount))) if (copy_to_user((void __user *)arg, &icount, sizeof(icount)))
return -EFAULT; return -EFAULT;
return 0; return 0;
...@@ -1526,7 +1528,8 @@ static int mos7720_startup(struct usb_serial *serial) ...@@ -1526,7 +1528,8 @@ static int mos7720_startup(struct usb_serial *serial)
/* Initialize all port interrupt end point to port 0 int /* Initialize all port interrupt end point to port 0 int
* endpoint. Our device has only one interrupt endpoint * endpoint. Our device has only one interrupt endpoint
* comman to all ports */ * comman to all ports */
serial->port[i]->interrupt_in_endpointAddress = serial->port[0]->interrupt_in_endpointAddress; serial->port[i]->interrupt_in_endpointAddress =
serial->port[0]->interrupt_in_endpointAddress;
mos7720_port->port = serial->port[i]; mos7720_port->port = serial->port[i];
usb_set_serial_port_data(serial->port[i], mos7720_port); usb_set_serial_port_data(serial->port[i], mos7720_port);
...@@ -1538,13 +1541,15 @@ static int mos7720_startup(struct usb_serial *serial) ...@@ -1538,13 +1541,15 @@ static int mos7720_startup(struct usb_serial *serial)
/* setting configuration feature to one */ /* setting configuration feature to one */
usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
(__u8)0x03, 0x00,0x01,0x00, NULL, 0x00, 5*HZ); (__u8)0x03, 0x00, 0x01, 0x00, NULL, 0x00, 5*HZ);
send_mos_cmd(serial,MOS_READ,0x00, UART_LSR, &data); // LSR For Port 1 /* LSR For Port 1 */
dbg("LSR:%x",data); send_mos_cmd(serial, MOS_READ, 0x00, UART_LSR, &data);
dbg("LSR:%x", data);
send_mos_cmd(serial,MOS_READ,0x01, UART_LSR, &data); // LSR For Port 2 /* LSR For Port 2 */
dbg("LSR:%x",data); send_mos_cmd(serial, MOS_READ, 0x01, UART_LSR, &data);
dbg("LSR:%x", data);
return 0; return 0;
} }
...@@ -1554,7 +1559,7 @@ static void mos7720_shutdown(struct usb_serial *serial) ...@@ -1554,7 +1559,7 @@ static void mos7720_shutdown(struct usb_serial *serial)
int i; int i;
/* free private structure allocated for serial port */ /* free private structure allocated for serial port */
for (i=0; i < serial->num_ports; ++i) { for (i = 0; i < serial->num_ports; ++i) {
kfree(usb_get_serial_port_data(serial->port[i])); kfree(usb_get_serial_port_data(serial->port[i]));
usb_set_serial_port_data(serial->port[i], NULL); usb_set_serial_port_data(serial->port[i], NULL);
} }
...@@ -1634,8 +1639,8 @@ module_init(moschip7720_init); ...@@ -1634,8 +1639,8 @@ module_init(moschip7720_init);
module_exit(moschip7720_exit); module_exit(moschip7720_exit);
/* Module information */ /* Module information */
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%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment