diff options
| -rw-r--r-- | drivers/tty/serial/sh-sci.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/tty/serial/sh-sci.c b/drivers/tty/serial/sh-sci.c index 60a8f7db2948..c93154f690a6 100644 --- a/drivers/tty/serial/sh-sci.c +++ b/drivers/tty/serial/sh-sci.c | |||
| @@ -2423,25 +2423,25 @@ struct sci_port_info { | |||
| 2423 | static const struct of_device_id of_sci_match[] = { | 2423 | static const struct of_device_id of_sci_match[] = { |
| 2424 | { | 2424 | { |
| 2425 | .compatible = "renesas,scif", | 2425 | .compatible = "renesas,scif", |
| 2426 | .data = (void *)&(const struct sci_port_info) { | 2426 | .data = &(const struct sci_port_info) { |
| 2427 | .type = PORT_SCIF, | 2427 | .type = PORT_SCIF, |
| 2428 | .regtype = SCIx_SH4_SCIF_REGTYPE, | 2428 | .regtype = SCIx_SH4_SCIF_REGTYPE, |
| 2429 | }, | 2429 | }, |
| 2430 | }, { | 2430 | }, { |
| 2431 | .compatible = "renesas,scifa", | 2431 | .compatible = "renesas,scifa", |
| 2432 | .data = (void *)&(const struct sci_port_info) { | 2432 | .data = &(const struct sci_port_info) { |
| 2433 | .type = PORT_SCIFA, | 2433 | .type = PORT_SCIFA, |
| 2434 | .regtype = SCIx_SCIFA_REGTYPE, | 2434 | .regtype = SCIx_SCIFA_REGTYPE, |
| 2435 | }, | 2435 | }, |
| 2436 | }, { | 2436 | }, { |
| 2437 | .compatible = "renesas,scifb", | 2437 | .compatible = "renesas,scifb", |
| 2438 | .data = (void *)&(const struct sci_port_info) { | 2438 | .data = &(const struct sci_port_info) { |
| 2439 | .type = PORT_SCIFB, | 2439 | .type = PORT_SCIFB, |
| 2440 | .regtype = SCIx_SCIFB_REGTYPE, | 2440 | .regtype = SCIx_SCIFB_REGTYPE, |
| 2441 | }, | 2441 | }, |
| 2442 | }, { | 2442 | }, { |
| 2443 | .compatible = "renesas,hscif", | 2443 | .compatible = "renesas,hscif", |
| 2444 | .data = (void *)&(const struct sci_port_info) { | 2444 | .data = &(const struct sci_port_info) { |
| 2445 | .type = PORT_HSCIF, | 2445 | .type = PORT_HSCIF, |
| 2446 | .regtype = SCIx_HSCIF_REGTYPE, | 2446 | .regtype = SCIx_HSCIF_REGTYPE, |
| 2447 | }, | 2447 | }, |
