diff options
author | Luis de Bethencourt <luis@debethencourt.com> | 2015-09-16 16:57:51 -0400 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2015-09-30 22:04:31 -0400 |
commit | 981ec2b248688968cd42734773add4c168326356 (patch) | |
tree | aa6e1a7d7b8598980cc4e560c652202392becc9a | |
parent | 7522c2402aca2cb032ee1de7efde657491c3e4f5 (diff) |
dmaengine: moxart-dma: 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: Vinod Koul <vinod.koul@intel.com>
-rw-r--r-- | drivers/dma/moxart-dma.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/dma/moxart-dma.c b/drivers/dma/moxart-dma.c index b4634109e010..631c4435e075 100644 --- a/drivers/dma/moxart-dma.c +++ b/drivers/dma/moxart-dma.c | |||
@@ -652,6 +652,7 @@ static const struct of_device_id moxart_dma_match[] = { | |||
652 | { .compatible = "moxa,moxart-dma" }, | 652 | { .compatible = "moxa,moxart-dma" }, |
653 | { } | 653 | { } |
654 | }; | 654 | }; |
655 | MODULE_DEVICE_TABLE(of, moxart_dma_match); | ||
655 | 656 | ||
656 | static struct platform_driver moxart_driver = { | 657 | static struct platform_driver moxart_driver = { |
657 | .probe = moxart_probe, | 658 | .probe = moxart_probe, |