ata: pata_macio: Fix module autoload for OF platform driver
authorLuis de Bethencourt <luis@debethencourt.com>
Thu, 17 Sep 2015 11:19:45 +0000 (13:19 +0200)
committerTejun Heo <tj@kernel.org>
Thu, 17 Sep 2015 15:14:25 +0000 (11:14 -0400)
This platform driver has a OF device ID table but the OF module
alias information is not created so module autoloading won't work.

This patch adds the missing MODULE_DEVICE_TABLE() for OF to export
that information so modules have the correct aliases built-in and
autoloading works correctly.

Link: https://lkml.org/lkml/2015/7/30/519
Signed-off-by: Luis de Bethencourt <luisbg@osg.samsung.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
drivers/ata/pata_macio.c

index b0028588ff1c32e7e0819b67e47f0facdd2a79e6..e3d4b059fcd14bcb8f4a9e21809c5cb7d30ededa 100644 (file)
@@ -1344,6 +1344,7 @@ static struct of_device_id pata_macio_match[] =
        },
        {},
 };
+MODULE_DEVICE_TABLE(of, pata_macio_match);
 
 static struct macio_driver pata_macio_driver =
 {