Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 93301
b: refs/heads/master
c: 04ca89d
h: refs/heads/master
i:
  93299: 5e4378c
v: v3
  • Loading branch information
Alan Cox authored and Greg Kroah-Hartman committed Apr 25, 2008
1 parent daeb9c8 commit 08cc6ed
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a40d8540f4b7874ef674428cf757e8f466d271ca
refs/heads/master: 04ca89d4948ad4b6ec3b33e9588ae1885643148c
9 changes: 9 additions & 0 deletions trunk/drivers/usb/serial/ti_usb_3410_5052.c
Original file line number Diff line number Diff line change
Expand Up @@ -1021,14 +1021,17 @@ static int ti_tiocmget(struct usb_serial_port *port, struct file *file)
unsigned int result;
unsigned int msr;
unsigned int mcr;
unsigned long flags;

dbg("%s - port %d", __FUNCTION__, port->number);

if (tport == NULL)
return -ENODEV;

spin_lock_irqsave(&tport->tp_lock, flags);
msr = tport->tp_msr;
mcr = tport->tp_shadow_mcr;
spin_unlock_irqrestore(&tport->tp_lock, flags);

result = ((mcr & TI_MCR_DTR) ? TIOCM_DTR : 0)
| ((mcr & TI_MCR_RTS) ? TIOCM_RTS : 0)
Expand All @@ -1049,12 +1052,14 @@ static int ti_tiocmset(struct usb_serial_port *port, struct file *file,
{
struct ti_port *tport = usb_get_serial_port_data(port);
unsigned int mcr;
unsigned long flags;

dbg("%s - port %d", __FUNCTION__, port->number);

if (tport == NULL)
return -ENODEV;

spin_lock_irqsave(&tport->tp_lock, flags);
mcr = tport->tp_shadow_mcr;

if (set & TIOCM_RTS)
Expand All @@ -1070,6 +1075,7 @@ static int ti_tiocmset(struct usb_serial_port *port, struct file *file,
mcr &= ~TI_MCR_DTR;
if (clear & TIOCM_LOOP)
mcr &= ~TI_MCR_LOOP;
spin_unlock_irqrestore(&tport->tp_lock, flags);

return ti_set_mcr(tport, mcr);
}
Expand Down Expand Up @@ -1357,14 +1363,17 @@ static void ti_send(struct ti_port *tport)

static int ti_set_mcr(struct ti_port *tport, unsigned int mcr)
{
unsigned long flags;
int status;

status = ti_write_byte(tport->tp_tdev,
tport->tp_uart_base_addr + TI_UART_OFFSET_MCR,
TI_MCR_RTS | TI_MCR_DTR | TI_MCR_LOOP, mcr);

spin_lock_irqsave(&tport->tp_lock, flags);
if (!status)
tport->tp_shadow_mcr = mcr;
spin_unlock_irqrestore(&tport->tp_lock, flags);

return status;
}
Expand Down

0 comments on commit 08cc6ed

Please sign in to comment.