mxser: use port variable in mxser_set_serial_info
mxser_set_serial_info already defined a local 'port' of type struct tty_port. So use it in the code everywhere. This eliminates some text from the code there. Signed-off-by: Jiri Slaby <jslaby@suse.cz> Link: https://lore.kernel.org/r/20210618061516.662-65-jslaby@suse.cz Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
202acdaa14
commit
1b3086b6e6
@@ -1080,14 +1080,14 @@ static int mxser_set_serial_info(struct tty_struct *tty,
|
|||||||
|
|
||||||
if (!capable(CAP_SYS_ADMIN)) {
|
if (!capable(CAP_SYS_ADMIN)) {
|
||||||
if ((ss->baud_base != MXSER_BAUD_BASE) ||
|
if ((ss->baud_base != MXSER_BAUD_BASE) ||
|
||||||
(close_delay != info->port.close_delay) ||
|
(close_delay != port->close_delay) ||
|
||||||
(closing_wait != info->port.closing_wait) ||
|
(closing_wait != port->closing_wait) ||
|
||||||
((ss->flags & ~ASYNC_USR_MASK) != (info->port.flags & ~ASYNC_USR_MASK))) {
|
((ss->flags & ~ASYNC_USR_MASK) != (port->flags & ~ASYNC_USR_MASK))) {
|
||||||
mutex_unlock(&port->mutex);
|
mutex_unlock(&port->mutex);
|
||||||
return -EPERM;
|
return -EPERM;
|
||||||
}
|
}
|
||||||
info->port.flags = ((info->port.flags & ~ASYNC_USR_MASK) |
|
port->flags = (port->flags & ~ASYNC_USR_MASK) |
|
||||||
(ss->flags & ASYNC_USR_MASK));
|
(ss->flags & ASYNC_USR_MASK);
|
||||||
} else {
|
} else {
|
||||||
/*
|
/*
|
||||||
* OK, past this point, all the error checking has been done.
|
* OK, past this point, all the error checking has been done.
|
||||||
|
|||||||
Reference in New Issue
Block a user