aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-04-24 22:26:16 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-04-24 22:26:16 -0400
commit2aafb3864b9fa5ce83250537d940f973ef37b8dc (patch)
tree2cbfa2595f1bc09a5df9eeb5c9c21de33f68830a
parent8ef0ed95ee040a5cd25325dddcb8292c34bec33e (diff)
Revert "serial: sh-sci: Add device tree support for r8a7779"
This reverts commit fcbee4d49f30eb0eaa83a62e6a3cab5a892ed93f. It wasn't quite ready to go in yet, sorry about that. Cc: Simon Horman <horms@verge.net.au> Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--Documentation/devicetree/bindings/serial/renesas,sci-serial.txt1
-rw-r--r--drivers/tty/serial/sh-sci.c10
2 files changed, 1 insertions, 10 deletions
diff --git a/Documentation/devicetree/bindings/serial/renesas,sci-serial.txt b/Documentation/devicetree/bindings/serial/renesas,sci-serial.txt
index bba86de1a094..53e6c175db6c 100644
--- a/Documentation/devicetree/bindings/serial/renesas,sci-serial.txt
+++ b/Documentation/devicetree/bindings/serial/renesas,sci-serial.txt
@@ -12,7 +12,6 @@ Required properties:
12 - "renesas,scifa-r8a7791" for R8A7791 (R-Car M2) SCIFA compatible UART. 12 - "renesas,scifa-r8a7791" for R8A7791 (R-Car M2) SCIFA compatible UART.
13 - "renesas,scifb-r8a7791" for R8A7791 (R-Car M2) SCIFB compatible UART. 13 - "renesas,scifb-r8a7791" for R8A7791 (R-Car M2) SCIFB compatible UART.
14 - "renesas,hscif-r8a7791" for R8A7791 (R-Car M2) HSCIF compatible UART. 14 - "renesas,hscif-r8a7791" for R8A7791 (R-Car M2) HSCIF compatible UART.
15 - "renesas,scif-r8a7779" for R8A7779 (R-Car H1) SCIF compatible UART.
16 - "renesas,scif" for generic SCIF compatible UART. 15 - "renesas,scif" for generic SCIF compatible UART.
17 - "renesas,scifa" for generic SCIFA compatible UART. 16 - "renesas,scifa" for generic SCIFA compatible UART.
18 - "renesas,scifb" for generic SCIFB compatible UART. 17 - "renesas,scifb" for generic SCIFB compatible UART.
diff --git a/drivers/tty/serial/sh-sci.c b/drivers/tty/serial/sh-sci.c
index 3b5d2f679946..88236da0ddf7 100644
--- a/drivers/tty/serial/sh-sci.c
+++ b/drivers/tty/serial/sh-sci.c
@@ -2419,7 +2419,6 @@ static int sci_remove(struct platform_device *dev)
2419struct sci_port_info { 2419struct sci_port_info {
2420 unsigned int type; 2420 unsigned int type;
2421 unsigned int regtype; 2421 unsigned int regtype;
2422 unsigned int scscr_extra;
2423}; 2422};
2424 2423
2425static const struct of_device_id of_sci_match[] = { 2424static const struct of_device_id of_sci_match[] = {
@@ -2430,13 +2429,6 @@ static const struct of_device_id of_sci_match[] = {
2430 .regtype = SCIx_SH4_SCIF_REGTYPE, 2429 .regtype = SCIx_SH4_SCIF_REGTYPE,
2431 }, 2430 },
2432 }, { 2431 }, {
2433 .compatible = "renesas,scif-r8a7779",
2434 .data = (void *)&(const struct sci_port_info) {
2435 .type = PORT_SCIF,
2436 .regtype = SCIx_SH4_SCIF_REGTYPE,
2437 .scscr_extra = SCSCR_CKE1,
2438 },
2439 }, {
2440 .compatible = "renesas,scifa", 2432 .compatible = "renesas,scifa",
2441 .data = &(const struct sci_port_info) { 2433 .data = &(const struct sci_port_info) {
2442 .type = PORT_SCIFA, 2434 .type = PORT_SCIFA,
@@ -2496,7 +2488,7 @@ sci_parse_dt(struct platform_device *pdev, unsigned int *dev_id)
2496 p->flags = UPF_IOREMAP | UPF_BOOT_AUTOCONF; 2488 p->flags = UPF_IOREMAP | UPF_BOOT_AUTOCONF;
2497 p->type = info->type; 2489 p->type = info->type;
2498 p->regtype = info->regtype; 2490 p->regtype = info->regtype;
2499 p->scscr = SCSCR_RE | SCSCR_TE | info->scscr_extra; 2491 p->scscr = SCSCR_RE | SCSCR_TE;
2500 2492
2501 return p; 2493 return p;
2502} 2494}