diff options
Diffstat (limited to 'drivers/tty/serial')
-rw-r--r-- | drivers/tty/serial/of_serial.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/tty/serial/of_serial.c b/drivers/tty/serial/of_serial.c index 5c7abe4c94dd..6a18ca6ddaa9 100644 --- a/drivers/tty/serial/of_serial.c +++ b/drivers/tty/serial/of_serial.c | |||
@@ -160,17 +160,17 @@ static int of_platform_serial_remove(struct platform_device *ofdev) | |||
160 | * A few common types, add more as needed. | 160 | * A few common types, add more as needed. |
161 | */ | 161 | */ |
162 | static struct of_device_id __devinitdata of_platform_serial_table[] = { | 162 | static struct of_device_id __devinitdata of_platform_serial_table[] = { |
163 | { .type = "serial", .compatible = "ns8250", .data = (void *)PORT_8250, }, | 163 | { .compatible = "ns8250", .data = (void *)PORT_8250, }, |
164 | { .type = "serial", .compatible = "ns16450", .data = (void *)PORT_16450, }, | 164 | { .compatible = "ns16450", .data = (void *)PORT_16450, }, |
165 | { .type = "serial", .compatible = "ns16550a", .data = (void *)PORT_16550A, }, | 165 | { .compatible = "ns16550a", .data = (void *)PORT_16550A, }, |
166 | { .type = "serial", .compatible = "ns16550", .data = (void *)PORT_16550, }, | 166 | { .compatible = "ns16550", .data = (void *)PORT_16550, }, |
167 | { .type = "serial", .compatible = "ns16750", .data = (void *)PORT_16750, }, | 167 | { .compatible = "ns16750", .data = (void *)PORT_16750, }, |
168 | { .type = "serial", .compatible = "ns16850", .data = (void *)PORT_16850, }, | 168 | { .compatible = "ns16850", .data = (void *)PORT_16850, }, |
169 | #ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL | 169 | #ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL |
170 | { .type = "serial", .compatible = "ibm,qpace-nwp-serial", | 170 | { .compatible = "ibm,qpace-nwp-serial", |
171 | .data = (void *)PORT_NWPSERIAL, }, | 171 | .data = (void *)PORT_NWPSERIAL, }, |
172 | #endif | 172 | #endif |
173 | { .type = "serial", .data = (void *)PORT_UNKNOWN, }, | 173 | { .type = "serial", .data = (void *)PORT_UNKNOWN, }, |
174 | { /* end of list */ }, | 174 | { /* end of list */ }, |
175 | }; | 175 | }; |
176 | 176 | ||