summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/include/mach
diff options
context:
space:
mode:
authorRobert Morell <rmorell@nvidia.com>2011-02-16 10:45:53 -0800
committerVarun Colbert <vcolbert@nvidia.com>2011-08-11 11:35:30 -0700
commit4edcb139115cbb3fe390949098bf91a7b94d7bc9 (patch)
tree62405c47ccb647b8445db00caefa3a26481bc0e6 /arch/arm/mach-tegra/include/mach
parent91555e9c4212b27af3982d7e2aa787cf220a7087 (diff)
video: tegra: Implement FLIP dc extension ioctl.
This is very similar to the tegra_fb FLIP ioctl. bug 818525 Change-Id: Iba32ab5bf730b575477c62a8ae4394f1779ef65e Signed-off-by: Robert Morell <rmorell@nvidia.com> Reviewed-on: http://git-master/r/40514 Reviewed-by: Jonathan Mayo <jmayo@nvidia.com>
Diffstat (limited to 'arch/arm/mach-tegra/include/mach')
-rw-r--r--arch/arm/mach-tegra/include/mach/tegra_dc_ext.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/mach-tegra/include/mach/tegra_dc_ext.h b/arch/arm/mach-tegra/include/mach/tegra_dc_ext.h
index 54680a5b06ac..715669505aad 100644
--- a/arch/arm/mach-tegra/include/mach/tegra_dc_ext.h
+++ b/arch/arm/mach-tegra/include/mach/tegra_dc_ext.h
@@ -31,6 +31,9 @@ struct tegra_dc_ext *tegra_dc_ext_register(struct nvhost_device *ndev,
struct tegra_dc *dc);
void tegra_dc_ext_unregister(struct tegra_dc_ext *dc_ext);
+/* called by display controller on suspend */
+void tegra_dc_ext_suspend(struct tegra_dc_ext *dc_ext);
+
#else /* CONFIG_TEGRA_DC_EXTENSIONS */
static inline
@@ -53,6 +56,10 @@ static inline
void tegra_dc_ext_unregister(struct tegra_dc_ext *dc_ext)
{
}
+static inline
+void tegra_dc_ext_suspend(struct tegra_dc_ext *dc_ext)
+{
+}
#endif /* CONFIG_TEGRA_DC_EXTENSIONS */
#endif /* __MACH_TEGRA_DC_EXT_H */