[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20220826144629.11507-2-ilpo.jarvinen@linux.intel.com>
Date: Fri, 26 Aug 2022 17:46:27 +0300
From: Ilpo Järvinen <ilpo.jarvinen@...ux.intel.com>
To: Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Jiri Slaby <jirislaby@...nel.org>,
linux-serial@...r.kernel.org, linux-kernel@...r.kernel.org
Cc: Andy Shevchenko <andriy.shevchenko@...ux.intel.com>,
Lino Sanfilippo <LinoSanfilippo@....de>,
Ilpo Järvinen <ilpo.jarvinen@...ux.intel.com>
Subject: [PATCH 1/3] serial: Rename vars in uart_get_rs485_config()
Make variable names to match uart_set_rs485_config() ones:
- rs485 -> rs485_user
- aux -> rs485
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@...ux.intel.com>
---
drivers/tty/serial/serial_core.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/tty/serial/serial_core.c b/drivers/tty/serial/serial_core.c
index 12c87cd201a7..9c1bf36b7a93 100644
--- a/drivers/tty/serial/serial_core.c
+++ b/drivers/tty/serial/serial_core.c
@@ -1408,16 +1408,16 @@ int uart_rs485_config(struct uart_port *port)
EXPORT_SYMBOL_GPL(uart_rs485_config);
static int uart_get_rs485_config(struct uart_port *port,
- struct serial_rs485 __user *rs485)
+ struct serial_rs485 __user *rs485_user)
{
unsigned long flags;
- struct serial_rs485 aux;
+ struct serial_rs485 rs485;
spin_lock_irqsave(&port->lock, flags);
- aux = port->rs485;
+ rs485 = port->rs485;
spin_unlock_irqrestore(&port->lock, flags);
- if (copy_to_user(rs485, &aux, sizeof(aux)))
+ if (copy_to_user(rs485_user, &rs485, sizeof(rs485)))
return -EFAULT;
return 0;
--
2.30.2
Powered by blists - more mailing lists