diff options
author | Sinan Kaya <okaya@codeaurora.org> | 2016-11-19 14:28:37 -0500 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2016-11-23 09:47:32 +0530 |
commit | 75ff76687cfd9f62ea4a6d3a86679d5be1439a94 (patch) | |
tree | 73a6cab9a8eb7bc6d8455abc48d4a122e26800ec /drivers/dma/qcom | |
parent | c6e4584dab244752ffc1d7f95cdcf5290e7f1369 (diff) |
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')
-rw-r--r-- | drivers/dma/qcom/hidma.c | 1 | ||||
-rw-r--r-- | drivers/dma/qcom/hidma_mgmt.c | 1 |
2 files changed, 2 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[] = { diff --git a/drivers/dma/qcom/hidma_mgmt.c b/drivers/dma/qcom/hidma_mgmt.c index 985f5ac2695d..f847d32cc4b5 100644 --- a/drivers/dma/qcom/hidma_mgmt.c +++ b/drivers/dma/qcom/hidma_mgmt.c @@ -282,6 +282,7 @@ static const struct acpi_device_id hidma_mgmt_acpi_ids[] = { {"QCOM8060"}, {}, }; +MODULE_DEVICE_TABLE(acpi, hidma_mgmt_acpi_ids); #endif static const struct of_device_id hidma_mgmt_match[] = { |