diff options
author | Luis de Bethencourt <luis@debethencourt.com> | 2015-09-18 20:03:43 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-10-04 19:09:21 +0100 |
commit | 8d58db1ede9bd1a057b5d5114ae72210347dfe91 (patch) | |
tree | 771e249ee8719bac1ced51705ee5abd0ab947e90 | |
parent | 50a84487c3c573a8c7c9146c31af21b51aa86b10 (diff) | |
download | op-kernel-dev-8d58db1ede9bd1a057b5d5114ae72210347dfe91.zip op-kernel-dev-8d58db1ede9bd1a057b5d5114ae72210347dfe91.tar.gz |
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 10d8c93..e08df97 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[] = { #endif { /* end of list */ }, }; +MODULE_DEVICE_TABLE(of, of_platform_serial_table); static struct platform_driver of_platform_serial_driver = { .driver = { |