]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
serial: sh-sci: Don't rely on platform data flags when not needed
authorLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Wed, 11 Jan 2017 14:43:24 +0000 (16:43 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 19 Jan 2017 13:17:04 +0000 (14:17 +0100)
The UPF_BOOT_AUTOCONF platform data flag is set by all platforms,
hardcode it.

The UPF_IOREMAP flag is set by a single SH platform and thus needs to be
kept. However, for ARM platforms, we can base the decision on whether an
OF node is present and bypass the platform data flags completely.

Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/sh-sci.c

index 28e96213bad8098544d45e3da245adbb48acb87c..d0102bcca4efad00c64458159bc235e4e08ea11b 100644 (file)
@@ -2455,7 +2455,7 @@ static int sci_remap_port(struct uart_port *port)
        if (port->membase)
                return 0;
 
-       if (port->flags & UPF_IOREMAP) {
+       if (port->dev->of_node || (port->flags & UPF_IOREMAP)) {
                port->membase = ioremap_nocache(port->mapbase, sport->reg_size);
                if (unlikely(!port->membase)) {
                        dev_err(port->dev, "can't remap port#%d\n", port->line);
@@ -2477,7 +2477,7 @@ static void sci_release_port(struct uart_port *port)
 {
        struct sci_port *sport = to_sci_port(port);
 
-       if (port->flags & UPF_IOREMAP) {
+       if (port->dev->of_node || (port->flags & UPF_IOREMAP)) {
                iounmap(port->membase);
                port->membase = NULL;
        }
@@ -2733,7 +2733,7 @@ static int sci_init_single(struct platform_device *dev,
        }
 
        port->type              = p->type;
-       port->flags             = UPF_FIXED_PORT | p->flags;
+       port->flags             = UPF_FIXED_PORT | UPF_BOOT_AUTOCONF | p->flags;
        port->regshift          = p->regshift;
 
        /*
@@ -2995,7 +2995,6 @@ sci_parse_dt(struct platform_device *pdev, unsigned int *dev_id)
 
        *dev_id = id;
 
-       p->flags = UPF_IOREMAP | UPF_BOOT_AUTOCONF;
        p->type = SCI_OF_TYPE(match->data);
        p->regtype = SCI_OF_REGTYPE(match->data);