summaryrefslogtreecommitdiff
path: root/drivers/video/tegra/host/t30
diff options
context:
space:
mode:
authorTerje Bergstrom <tbergstrom@nvidia.com>2011-12-20 15:20:06 +0200
committerVarun Wadekar <vwadekar@nvidia.com>2011-12-30 10:47:09 +0530
commita62a36ead05323b9d30d46215f555022ad0a44dd (patch)
tree688e8eefc6b8cda520f13b1944aba260bc598da3 /drivers/video/tegra/host/t30
parent3a68384b995b98781ef7f743b2b1bd98186aa6f0 (diff)
video: tegra: host: Move MPE files into own directory
Separate source code related to mpe into an own directory. Bug 871237 Change-Id: I59251752119660bb1e57e1763626fa289a2b9f5b Signed-off-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-on: http://git-master/r/70531 Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: Mayuresh Kulkarni <mkulkarni@nvidia.com> Reviewed-by: Krishna Reddy <vdumpa@nvidia.com>
Diffstat (limited to 'drivers/video/tegra/host/t30')
-rw-r--r--drivers/video/tegra/host/t30/channel_t30.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/tegra/host/t30/channel_t30.c b/drivers/video/tegra/host/t30/channel_t30.c
index 876870d77ead..72c18cdf4a09 100644
--- a/drivers/video/tegra/host/t30/channel_t30.c
+++ b/drivers/video/tegra/host/t30/channel_t30.c
@@ -32,7 +32,7 @@
#include "../t20/syncpt_t20.h"
#include "../3dctx_common.h"
#include "3dctx_t30.h"
-#include "../t20/mpectx_t20.h"
+#include "../mpe/mpe.h"
#include "scale3d.h"
#define NVMODMUTEX_2D_FULL (1)
@@ -135,7 +135,7 @@ const struct nvhost_channeldesc nvhost_t30_channelmap[] = {
.waitbasesync = true,
.keepalive = true,
.module = {
- .prepare_poweroff = nvhost_mpectx_prepare_power_off,
+ .prepare_poweroff = nvhost_mpe_prepare_power_off,
.clocks = {{"mpe", UINT_MAX}, {"emc", UINT_MAX}, {} },
.powergate_ids = {TEGRA_POWERGATE_MPE, -1},
NVHOST_DEFAULT_CLOCKGATE_DELAY,
@@ -163,7 +163,7 @@ static inline int t30_nvhost_hwctx_handler_init(
if (strcmp(module, "gr3d") == 0)
return t30_nvhost_3dctx_handler_init(h);
else if (strcmp(module, "mpe") == 0)
- return t20_nvhost_mpectx_handler_init(h);
+ return nvhost_mpe_ctxhandler_init(h);
return 0;
}