summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/include/mach/fb.h
diff options
context:
space:
mode:
authorRamalingam C <ramalingamc@nvidia.com>2013-01-28 21:53:30 +0530
committerDan Willemsen <dwillemsen@nvidia.com>2013-09-14 12:57:50 -0700
commit745e0f58dab3290456298ceadfd7a109b56a6891 (patch)
tree243f7d420ba1c2f8b6c0d28ea3a8b815d60435fb /arch/arm/mach-tegra/include/mach/fb.h
parentd2e30af215db4faea975986394af1f7dc03ddadf (diff)
arm: tegra: Addition of tegra_fb_pan_display_reset
Addition of tegra_fb_pan_display_reset in include/mach/fb.h Bug 1219063 Bug 1216172 Bug 1216329 Change-Id: I044fe65cdc55e36d6221413a7e84cf1862b59591 Signed-off-by: Ramalingam C <ramalingamc@nvidia.com> Reviewed-on: http://git-master/r/194748 Reviewed-by: Automatic_Commit_Validation_User GVS: Gerrit_Virtual_Submit Reviewed-by: Jon Mayo <jmayo@nvidia.com>
Diffstat (limited to 'arch/arm/mach-tegra/include/mach/fb.h')
-rw-r--r--arch/arm/mach-tegra/include/mach/fb.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/arch/arm/mach-tegra/include/mach/fb.h b/arch/arm/mach-tegra/include/mach/fb.h
index dcfa5a7ec4a9..1fa6de63ce6a 100644
--- a/arch/arm/mach-tegra/include/mach/fb.h
+++ b/arch/arm/mach-tegra/include/mach/fb.h
@@ -2,9 +2,9 @@
* arch/arm/mach-tegra/include/mach/fb.h
*
* Copyright (C) 2010 Google, Inc.
+ * Author: Erik Gilling <konkers@google.com>
*
- * Author:
- * Erik Gilling <konkers@google.com>
+ * Copyright (c) 2010-2013, NVIDIA CORPORATION, All rights reserved.
*
* This software is licensed under the terms of the GNU General Public
* License version 2, as published by the Free Software Foundation, and
@@ -37,6 +37,7 @@ struct tegra_fb_info *tegra_fb_register(struct platform_device *ndev,
struct tegra_fb_data *fb_data,
struct resource *fb_mem);
void tegra_fb_unregister(struct tegra_fb_info *fb_info);
+void tegra_fb_pan_display_reset(struct tegra_fb_info *fb_info);
void tegra_fb_update_monspecs(struct tegra_fb_info *fb_info,
struct fb_monspecs *specs,
bool (*mode_filter)(const struct tegra_dc *dc,
@@ -53,6 +54,10 @@ static inline void tegra_fb_unregister(struct tegra_fb_info *fb_info)
{
}
+static inline void tegra_fb_pan_display_reset(struct tegra_fb_info *fb_info)
+{
+}
+
static inline void tegra_fb_update_monspecs(struct tegra_fb_info *fb_info,
struct fb_monspecs *specs,
bool (*mode_filter)(struct fb_videomode *mode))