forked from Imagelibrary/rtems
Patch from Eric Norum:
I fixed the problems noted by Victor Vengerov.
1) Fix typo in cfsetispeed().
2) In rtems_termios_open, ensure that args->iop->data1 is set before calling
device-specific open routine.
This commit is contained in:
@@ -285,20 +285,15 @@ rtems_termios_open (
|
||||
tty->termios.c_cc[VWERASE] = '\027';
|
||||
tty->termios.c_cc[VLNEXT] = '\026';
|
||||
|
||||
/*
|
||||
* Device-specific open
|
||||
*/
|
||||
if (tty->device.firstOpen)
|
||||
(*tty->device.firstOpen)(major, minor, arg);
|
||||
|
||||
/*
|
||||
* Bump name characer
|
||||
*/
|
||||
if (c++ == 'z')
|
||||
c = 'a';
|
||||
}
|
||||
tty->refcount++;
|
||||
args->iop->data1 = tty;
|
||||
if (!tty->refcount++ && tty->device.firstOpen)
|
||||
(*tty->device.firstOpen)(major, minor, arg);
|
||||
rtems_semaphore_release (ttyMutex);
|
||||
return RTEMS_SUCCESSFUL;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user