summaryrefslogtreecommitdiffstats
path: root/drivers/tty/serial/mxs-auart.c
diff options
context:
space:
mode:
authorJuergen Borleis2015-08-07 12:47:03 +0200
committerGreg Kroah-Hartman2015-08-15 02:08:47 +0200
commit3fa30ac3b9a9220fa953eeb6d21b9ca578c67885 (patch)
treecc5e40077a9cc7499950c52361cea0c6e026fc00 /drivers/tty/serial/mxs-auart.c
parentserial: 8250_pci: fix mode after S3/S4 resume for F81504/508/512 (diff)
downloadkernel-qcow2-linux-3fa30ac3b9a9220fa953eeb6d21b9ca578c67885.tar.gz
kernel-qcow2-linux-3fa30ac3b9a9220fa953eeb6d21b9ca578c67885.tar.xz
kernel-qcow2-linux-3fa30ac3b9a9220fa953eeb6d21b9ca578c67885.zip
serial: mxs-auart: use a function name to reflect what it really does
This function clears the reset the AUART unit is in after system start to make it work. Signed-off-by: Juergen Borleis <jbe@pengutronix.de> Reviewed-by: Peter Hurley <peter@hurleysoftware.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/serial/mxs-auart.c')
-rw-r--r--drivers/tty/serial/mxs-auart.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/tty/serial/mxs-auart.c b/drivers/tty/serial/mxs-auart.c
index 13cf7738fbdc..7dc87a9e4bff 100644
--- a/drivers/tty/serial/mxs-auart.c
+++ b/drivers/tty/serial/mxs-auart.c
@@ -842,7 +842,7 @@ static irqreturn_t mxs_auart_irq_handle(int irq, void *context)
return IRQ_HANDLED;
}
-static void mxs_auart_reset(struct uart_port *u)
+static void mxs_auart_reset_deassert(struct uart_port *u)
{
int i;
unsigned int reg;
@@ -1291,7 +1291,7 @@ static int mxs_auart_probe(struct platform_device *pdev)
auart_port[s->port.line] = s;
- mxs_auart_reset(&s->port);
+ mxs_auart_reset_deassert(&s->port);
ret = uart_add_one_port(&auart_driver, &s->port);
if (ret)