summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordmitry pervushin <dpervushin@nvidia.com>2015-12-15 06:21:58 -0500
committerSumeet Gupta <sumeetg@nvidia.com>2016-01-13 13:39:00 -0500
commit600ca656507bfceaa4b94de6cb6160f1f5404241 (patch)
treee853eb5981fda5e68157e3c9d4409a8252793c1f
parentba7b3acd2bfc632932b87d04d82d502d11d44a3d (diff)
drivers: allow selected drivers to async probe
List of drivers that now want async probe: - sdhci-tegra - qspi-mtd - nvmap - gk20a - dc Bug 200083391 Change-Id: Ie0a0677961b704c78d4eb2cdab9f0e9a925a3ca1 Reviewed-on: http://git-master/r/923738 (cherry-picked from 75c067e83c7cde2a37c4fae01719e40c5b7d2835) Signed-off-by: dmitry pervushin <dpervushin@nvidia.com> Reviewed-on: http://git-master/r/923121 Reviewed-by: Sumeet Gupta <sumeetg@nvidia.com> Tested-by: Sumeet Gupta <sumeetg@nvidia.com>
-rw-r--r--drivers/video/tegra/nvmap/nvmap_init.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/tegra/nvmap/nvmap_init.c b/drivers/video/tegra/nvmap/nvmap_init.c
index 668cb45eb..1c115bb54 100644
--- a/drivers/video/tegra/nvmap/nvmap_init.c
+++ b/drivers/video/tegra/nvmap/nvmap_init.c
@@ -408,6 +408,7 @@ static struct platform_driver nvmap_driver = {
408 .name = "tegra-carveouts", 408 .name = "tegra-carveouts",
409 .owner = THIS_MODULE, 409 .owner = THIS_MODULE,
410 .of_match_table = nvmap_of_ids, 410 .of_match_table = nvmap_of_ids,
411 .probe_type = PROBE_PREFER_ASYNCHRONOUS,
411 }, 412 },
412}; 413};
413 414