summaryrefslogtreecommitdiff
path: root/drivers/video/tegra/host/t30/t30.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/video/tegra/host/t30/t30.c')
-rw-r--r--drivers/video/tegra/host/t30/t30.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/video/tegra/host/t30/t30.c b/drivers/video/tegra/host/t30/t30.c
index c7a5011cb953..00e0f648afcc 100644
--- a/drivers/video/tegra/host/t30/t30.c
+++ b/drivers/video/tegra/host/t30/t30.c
@@ -34,7 +34,7 @@ int nvhost_init_t30_support(struct nvhost_master *host)
err = nvhost_init_t20_cdma_support(host);
if (err)
return err;
- err = nvhost_init_t20_debug_support(host);
+ err = nvhost_init_t30_debug_support(host);
if (err)
return err;
err = nvhost_init_t20_syncpt_support(host);
@@ -46,5 +46,8 @@ int nvhost_init_t30_support(struct nvhost_master *host)
err = nvhost_init_t20_cpuaccess_support(host);
if (err)
return err;
+ err = nvhost_init_t30_acm(host);
+ if (err)
+ return err;
return 0;
}