diff options
author | Sinan Kaya <okaya@codeaurora.org> | 2016-11-19 20:28:37 +0100 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2016-11-23 05:17:32 +0100 |
commit | 75ff76687cfd9f62ea4a6d3a86679d5be1439a94 (patch) | |
tree | 73a6cab9a8eb7bc6d8455abc48d4a122e26800ec /drivers/dma/qcom/hidma.c | |
parent | dmaengine: qcom_hidma: cleanup sysfs entries during remove (diff) | |
download | linux-75ff76687cfd9f62ea4a6d3a86679d5be1439a94.tar.xz linux-75ff76687cfd9f62ea4a6d3a86679d5be1439a94.zip |
dmaengine: qcom_hidma: autoload while probing ACPI
MODULE_DEVICE_TABLE is used by the kernel to determine which device driver
should be loaded for which platform device. MODULE_DEVICE_TABLE has been
only defined for the device-tree based platforms in the current code.
Defining it also for ACPI based platforms.
Signed-off-by: Sinan Kaya <okaya@codeaurora.org>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma/qcom/hidma.c')
-rw-r--r-- | drivers/dma/qcom/hidma.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/dma/qcom/hidma.c b/drivers/dma/qcom/hidma.c index 248e74bfd95a..3c982c96b4b7 100644 --- a/drivers/dma/qcom/hidma.c +++ b/drivers/dma/qcom/hidma.c @@ -895,6 +895,7 @@ static const struct acpi_device_id hidma_acpi_ids[] = { {"QCOM8062"}, {}, }; +MODULE_DEVICE_TABLE(acpi, hidma_acpi_ids); #endif static const struct of_device_id hidma_match[] = { |