diff options
author | Sinan Kaya <okaya@codeaurora.org> | 2016-11-19 22:28:37 +0300 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2016-11-23 07:17:32 +0300 |
commit | 75ff76687cfd9f62ea4a6d3a86679d5be1439a94 (patch) | |
tree | 73a6cab9a8eb7bc6d8455abc48d4a122e26800ec /drivers/dma/qcom/hidma_mgmt.c | |
parent | c6e4584dab244752ffc1d7f95cdcf5290e7f1369 (diff) | |
download | linux-75ff76687cfd9f62ea4a6d3a86679d5be1439a94.tar.xz |
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_mgmt.c')
-rw-r--r-- | drivers/dma/qcom/hidma_mgmt.c | 1 |
1 files changed, 1 insertions, 0 deletions
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[] = { |