]> git.karo-electronics.de Git - linux-beck.git/commitdiff
serial/sirf: fixup for changes to pin control
authorLinus Walleij <linus.walleij@linaro.org>
Thu, 16 Feb 2012 18:36:21 +0000 (19:36 +0100)
committerLinus Walleij <linus.walleij@linaro.org>
Wed, 22 Feb 2012 16:59:12 +0000 (17:59 +0100)
We changed the signature of the pin multiplexing functions to
handle any pin business, so fix up the Sirf driver to call this
new interface and rename some variables to make the semantics
understandable.

Cc: linux-serial@vger.kernel.org
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Acked-by: Barry Song <Baohua.Song@csr.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/tty/serial/sirfsoc_uart.c
drivers/tty/serial/sirfsoc_uart.h

index a60523fee11bc27c9438809493cd7c0e8a869696..c1a871eac4503e7cdf2a4855fbbbe3830cfd66a7 100644 (file)
@@ -22,7 +22,7 @@
 #include <linux/io.h>
 #include <asm/irq.h>
 #include <asm/mach/irq.h>
-#include <linux/pinctrl/pinmux.h>
+#include <linux/pinctrl/consumer.h>
 
 #include "sirfsoc_uart.h"
 
@@ -673,12 +673,12 @@ int sirfsoc_uart_probe(struct platform_device *pdev)
        port->irq = res->start;
 
        if (sirfport->hw_flow_ctrl) {
-               sirfport->pmx = pinmux_get(&pdev->dev, NULL);
-               ret = IS_ERR(sirfport->pmx);
+               sirfport->p = pinctrl_get(&pdev->dev, NULL);
+               ret = IS_ERR(sirfport->p);
                if (ret)
-                       goto pmx_err;
+                       goto pin_err;
 
-               pinmux_enable(sirfport->pmx);
+               pinctrl_enable(sirfport->p);
        }
 
        port->ops = &sirfsoc_uart_ops;
@@ -696,10 +696,10 @@ int sirfsoc_uart_probe(struct platform_device *pdev)
 port_err:
        platform_set_drvdata(pdev, NULL);
        if (sirfport->hw_flow_ctrl) {
-               pinmux_disable(sirfport->pmx);
-               pinmux_put(sirfport->pmx);
+               pinctrl_disable(sirfport->p);
+               pinctrl_put(sirfport->p);
        }
-pmx_err:
+pin_err:
 irq_err:
        devm_iounmap(&pdev->dev, port->membase);
 err:
@@ -712,8 +712,8 @@ static int sirfsoc_uart_remove(struct platform_device *pdev)
        struct uart_port *port = &sirfport->port;
        platform_set_drvdata(pdev, NULL);
        if (sirfport->hw_flow_ctrl) {
-               pinmux_disable(sirfport->pmx);
-               pinmux_put(sirfport->pmx);
+               pinctrl_disable(sirfport->p);
+               pinctrl_put(sirfport->p);
        }
        devm_iounmap(&pdev->dev, port->membase);
        uart_remove_one_port(&sirfsoc_uart_drv, port);
index fc64260fa93c48461e17a6468c6d9a84eed060c7..6e207fdc2fed7615daa0d2cedbaf4013afca4463 100644 (file)
@@ -162,7 +162,7 @@ struct sirfsoc_uart_port {
        unsigned char                   ms_enabled;
 
        struct uart_port                port;
-       struct pinmux                   *pmx;
+       struct pinctrl                  *p;
 };
 
 /* Hardware Flow Control */