diff options
author | Luis de Bethencourt <luis@debethencourt.com> | 2015-09-18 14:03:43 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-10-04 14:09:21 -0400 |
commit | 8d58db1ede9bd1a057b5d5114ae72210347dfe91 (patch) | |
tree | 771e249ee8719bac1ced51705ee5abd0ab947e90 | |
parent | 50a84487c3c573a8c7c9146c31af21b51aa86b10 (diff) |
tty: serial: of_serial: Fix module autoload for OF platform driver
This platform driver has a OF device ID table but the OF module
alias information is not created so module autoloading won't work.
Signed-off-by: Luis de Bethencourt <luisbg@osg.samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/tty/serial/of_serial.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/tty/serial/of_serial.c b/drivers/tty/serial/of_serial.c index 10d8c9313e8a..e08df9775983 100644 --- a/drivers/tty/serial/of_serial.c +++ b/drivers/tty/serial/of_serial.c | |||
@@ -354,6 +354,7 @@ static const struct of_device_id of_platform_serial_table[] = { | |||
354 | #endif | 354 | #endif |
355 | { /* end of list */ }, | 355 | { /* end of list */ }, |
356 | }; | 356 | }; |
357 | MODULE_DEVICE_TABLE(of, of_platform_serial_table); | ||
357 | 358 | ||
358 | static struct platform_driver of_platform_serial_driver = { | 359 | static struct platform_driver of_platform_serial_driver = { |
359 | .driver = { | 360 | .driver = { |