]> git.karo-electronics.de Git - linux-beck.git/commitdiff
tty: serial: sprd: Fix module autoload for OF platform driver
authorLuis de Bethencourt <luis@debethencourt.com>
Fri, 18 Sep 2015 18:04:12 +0000 (20:04 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 4 Oct 2015 18:09:21 +0000 (19:09 +0100)
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>
drivers/tty/serial/sprd_serial.c

index 3866516c2926a32c5f63600b7dbee05497af99bf..9dbae01d41cef75186932201674ef937168279e6 100644 (file)
@@ -782,6 +782,7 @@ static const struct of_device_id serial_ids[] = {
        {.compatible = "sprd,sc9836-uart",},
        {}
 };
+MODULE_DEVICE_TABLE(of, serial_ids);
 
 static struct platform_driver sprd_platform_driver = {
        .probe          = sprd_probe,