summaryrefslogtreecommitdiff
path: root/drivers/video/tegra/host/nvhost_hwctx.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/video/tegra/host/nvhost_hwctx.h')
-rw-r--r--drivers/video/tegra/host/nvhost_hwctx.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/video/tegra/host/nvhost_hwctx.h b/drivers/video/tegra/host/nvhost_hwctx.h
index f128584e96f4..6d6f458d7d75 100644
--- a/drivers/video/tegra/host/nvhost_hwctx.h
+++ b/drivers/video/tegra/host/nvhost_hwctx.h
@@ -65,7 +65,6 @@ struct hwctx_reginfo {
unsigned int offset:12;
unsigned int count:16;
unsigned int type:2;
- unsigned int version:2;
};
enum {
@@ -74,6 +73,6 @@ enum {
HWCTX_REGINFO_INDIRECT_4X
};
-#define HWCTX_REGINFO(version, offset, count, type) {offset, count, HWCTX_REGINFO_##type, version}
+#define HWCTX_REGINFO(offset, count, type) {offset, count, HWCTX_REGINFO_##type}
#endif