Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 93302
b: refs/heads/master
c: 3d71fe0
h: refs/heads/master
v: v3
  • Loading branch information
Alan Cox authored and Greg Kroah-Hartman committed Apr 25, 2008
1 parent 08cc6ed commit edd8b2f
Show file tree
Hide file tree
Showing 2 changed files with 8 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: 04ca89d4948ad4b6ec3b33e9588ae1885643148c
refs/heads/master: 3d71fe0bb29a3fbffdbe69dd0696927b6a23dd4e
7 changes: 7 additions & 0 deletions trunk/drivers/usb/serial/io_ti.c
Original file line number Diff line number Diff line change
Expand Up @@ -2559,9 +2559,11 @@ static int edge_tiocmset (struct usb_serial_port *port, struct file *file, unsig
{
struct edgeport_port *edge_port = usb_get_serial_port_data(port);
unsigned int mcr;
unsigned long flags;

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

spin_lock_irqsave(&edge_port->ep_lock, flags);
mcr = edge_port->shadow_mcr;
if (set & TIOCM_RTS)
mcr |= MCR_RTS;
Expand All @@ -2578,6 +2580,7 @@ static int edge_tiocmset (struct usb_serial_port *port, struct file *file, unsig
mcr &= ~MCR_LOOPBACK;

edge_port->shadow_mcr = mcr;
spin_unlock_irqrestore(&edge_port->ep_lock, flags);

TIRestoreMCR (edge_port, mcr);

Expand All @@ -2590,9 +2593,12 @@ static int edge_tiocmget(struct usb_serial_port *port, struct file *file)
unsigned int result = 0;
unsigned int msr;
unsigned int mcr;
unsigned long flags;

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

spin_lock_irqsave(&edge_port->ep_lock, flags);

msr = edge_port->shadow_msr;
mcr = edge_port->shadow_mcr;
result = ((mcr & MCR_DTR) ? TIOCM_DTR: 0) /* 0x002 */
Expand All @@ -2604,6 +2610,7 @@ static int edge_tiocmget(struct usb_serial_port *port, struct file *file)


dbg("%s -- %x", __FUNCTION__, result);
spin_unlock_irqrestore(&edge_port->ep_lock, flags);

return result;
}
Expand Down

0 comments on commit edd8b2f

Please sign in to comment.