summaryrefslogtreecommitdiff
path: root/drivers/tty/serial/sirfsoc_uart.c
diff options
context:
space:
mode:
authorQipan Li <Qipan.Li@csr.com>2013-08-19 11:47:51 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-08-19 17:12:21 -0700
commit67bc306cec18b962966208a8b553ac99fa554247 (patch)
treeff8a4b107ab78ac112d9ec4b4040714498349b46 /drivers/tty/serial/sirfsoc_uart.c
parent3abeff77c8e2d2ac494021a7ee12892b6136381c (diff)
serial: sirf: fix the typo for rts/cts gpio
fix the typo in commit 2eb5618de87927e54 which uses two gpios for rts/cts. Signed-off-by: Qipan Li <Qipan.Li@csr.com> Signed-off-by: Barry Song <Baohua.Song@csr.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/serial/sirfsoc_uart.c')
-rw-r--r--drivers/tty/serial/sirfsoc_uart.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/tty/serial/sirfsoc_uart.c b/drivers/tty/serial/sirfsoc_uart.c
index ed3b89046276..10718c0d5439 100644
--- a/drivers/tty/serial/sirfsoc_uart.c
+++ b/drivers/tty/serial/sirfsoc_uart.c
@@ -915,20 +915,20 @@ static int sirfsoc_uart_probe(struct platform_device *pdev)
!gpio_is_valid(sirfport->rts_gpio))) {
ret = -EINVAL;
dev_err(&pdev->dev,
- "Usp flow control must have rfs and tfs gpio");
+ "Usp flow control must have cts and rts gpio");
goto err;
}
ret = devm_gpio_request(&pdev->dev, sirfport->cts_gpio,
- "usp-rfs-gpio");
+ "usp-cts-gpio");
if (ret) {
- dev_err(&pdev->dev, "Unable request rfs gpio");
+ dev_err(&pdev->dev, "Unable request cts gpio");
goto err;
}
gpio_direction_input(sirfport->cts_gpio);
ret = devm_gpio_request(&pdev->dev, sirfport->rts_gpio,
- "usp-tfs-gpio");
+ "usp-rts-gpio");
if (ret) {
- dev_err(&pdev->dev, "Unable request tfs gpio");
+ dev_err(&pdev->dev, "Unable request rts gpio");
goto err;
}
gpio_direction_output(sirfport->rts_gpio, 1);