mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-03 19:24:02 +08:00
staging: fwserial: remove extra parentheses around function arguments
Removes extra parentheses around function arguments. Issue detected and resolved using the following coccinelle script: @@ expression e; identifier f; @@ f(..., -( e -) ,...); Signed-off-by: Aya Mahfouz <mahfouz.saif.elyazal@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
717842fee5
commit
975da35f0f
@ -1186,7 +1186,7 @@ static void fwtty_unthrottle(struct tty_struct *tty)
|
|||||||
{
|
{
|
||||||
struct fwtty_port *port = tty->driver_data;
|
struct fwtty_port *port = tty->driver_data;
|
||||||
|
|
||||||
fwtty_dbg(port, "CRTSCTS: %d\n", (C_CRTSCTS(tty) != 0));
|
fwtty_dbg(port, "CRTSCTS: %d\n", C_CRTSCTS(tty) != 0);
|
||||||
|
|
||||||
fwtty_profile_fifo(port, port->stats.unthrottle);
|
fwtty_profile_fifo(port, port->stats.unthrottle);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user