aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorDaniel Hellstrom <daniel@gaisler.com>2011-03-29 21:12:40 -0400
committerDavid S. Miller <davem@davemloft.net>2011-03-30 07:28:54 -0400
commit10544f128c338aeb7f63c002ad7eee67aa0e6acf (patch)
tree66eb9b823e751d8946fe1a56489657d843e69af4 /drivers
parent97c278e31c7c3e10a3288b53f1b0a1733eacec5a (diff)
sparc32, leon: APBUART driver must use archdata to get IRQ number
See Commit id 1636f8ac2b08410df4766449f7c86b912443cd99 (sparc/of: Move of_device fields into struct pdev_archdata), this patch is similar to 19e4875fb21a69fbf620e84769a74d189c69c58d (of/sparc: fix build regression from of_device changes) Signed-off-by: Daniel Hellstrom <daniel@gaisler.com> Acked-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/tty/serial/apbuart.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/drivers/tty/serial/apbuart.c b/drivers/tty/serial/apbuart.c
index 1ab999b04ef..12d4e7ca53c 100644
--- a/drivers/tty/serial/apbuart.c
+++ b/drivers/tty/serial/apbuart.c
@@ -555,10 +555,9 @@ static struct uart_driver grlib_apbuart_driver = {
555 555
556static int __devinit apbuart_probe(struct platform_device *op) 556static int __devinit apbuart_probe(struct platform_device *op)
557{ 557{
558 int i = -1; 558 int i;
559 struct uart_port *port = NULL; 559 struct uart_port *port = NULL;
560 560
561 i = 0;
562 for (i = 0; i < grlib_apbuart_port_nr; i++) { 561 for (i = 0; i < grlib_apbuart_port_nr; i++) {
563 if (op->dev.of_node == grlib_apbuart_nodes[i]) 562 if (op->dev.of_node == grlib_apbuart_nodes[i])
564 break; 563 break;
@@ -566,6 +565,7 @@ static int __devinit apbuart_probe(struct platform_device *op)
566 565
567 port = &grlib_apbuart_ports[i]; 566 port = &grlib_apbuart_ports[i];
568 port->dev = &op->dev; 567 port->dev = &op->dev;
568 port->irq = op->archdata.irqs[0];
569 569
570 uart_add_one_port(&grlib_apbuart_driver, (struct uart_port *) port); 570 uart_add_one_port(&grlib_apbuart_driver, (struct uart_port *) port);
571 571
@@ -615,7 +615,7 @@ static int grlib_apbuart_configure(void)
615 freq_khz = *prop; 615 freq_khz = *prop;
616 616
617 for_each_matching_node(np, apbuart_match) { 617 for_each_matching_node(np, apbuart_match) {
618 const int *irqs, *ampopts; 618 const int *ampopts;
619 const struct amba_prom_registers *regs; 619 const struct amba_prom_registers *regs;
620 struct uart_port *port; 620 struct uart_port *port;
621 unsigned long addr; 621 unsigned long addr;
@@ -623,11 +623,9 @@ static int grlib_apbuart_configure(void)
623 ampopts = of_get_property(np, "ampopts", NULL); 623 ampopts = of_get_property(np, "ampopts", NULL);
624 if (ampopts && (*ampopts == 0)) 624 if (ampopts && (*ampopts == 0))
625 continue; /* Ignore if used by another OS instance */ 625 continue; /* Ignore if used by another OS instance */
626
627 irqs = of_get_property(np, "interrupts", NULL);
628 regs = of_get_property(np, "reg", NULL); 626 regs = of_get_property(np, "reg", NULL);
629 627
630 if (!irqs || !regs) 628 if (!regs)
631 continue; 629 continue;
632 630
633 grlib_apbuart_nodes[line] = np; 631 grlib_apbuart_nodes[line] = np;
@@ -638,7 +636,7 @@ static int grlib_apbuart_configure(void)
638 636
639 port->mapbase = addr; 637 port->mapbase = addr;
640 port->membase = ioremap(addr, sizeof(struct grlib_apbuart_regs_map)); 638 port->membase = ioremap(addr, sizeof(struct grlib_apbuart_regs_map));
641 port->irq = *irqs; 639 port->irq = 0;
642 port->iotype = UPIO_MEM; 640 port->iotype = UPIO_MEM;
643 port->ops = &grlib_apbuart_ops; 641 port->ops = &grlib_apbuart_ops;
644 port->flags = UPF_BOOT_AUTOCONF; 642 port->flags = UPF_BOOT_AUTOCONF;