summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/board.h
diff options
context:
space:
mode:
authorTerje Bergstrom <tbergstrom@nvidia.com>2013-04-08 11:33:48 +0300
committerDan Willemsen <dwillemsen@nvidia.com>2013-09-14 13:23:57 -0700
commit5875d3f37b6ef40864418ffedbc143eae378a910 (patch)
tree674acc21886b13ec5fcd51c5202bdb74086711f4 /arch/arm/mach-tegra/board.h
parent9544b856feb4923c8179e67ddf29a68e7734e25a (diff)
ARM: tegra: Fix tegra_move_framebuffer signature
tegra_move_framebuffer() actually takes physical addresses and a size parameter. Fix the signature to match that. Bug 1201552 Change-Id: I67d82923a7d915358161f5e1fad5b75e0a50f431 Signed-off-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-on: http://git-master/r/217304
Diffstat (limited to 'arch/arm/mach-tegra/board.h')
-rw-r--r--arch/arm/mach-tegra/board.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/mach-tegra/board.h b/arch/arm/mach-tegra/board.h
index 7a035aed8429..7b8ba72c5521 100644
--- a/arch/arm/mach-tegra/board.h
+++ b/arch/arm/mach-tegra/board.h
@@ -99,10 +99,10 @@ void __init tegra_release_bootloader_fb(void);
void __init tegra_protected_aperture_init(unsigned long aperture);
int __init tegra_init_board_info(void);
void __tegra_move_framebuffer(struct platform_device *pdev,
- unsigned long to, unsigned long from,
- unsigned long size);
-static inline void tegra_move_framebuffer(unsigned long to, unsigned long from,
- unsigned long size)
+ phys_addr_t to, phys_addr_t from,
+ size_t size);
+static inline void tegra_move_framebuffer(phys_addr_t to, phys_addr_t from,
+ size_t size)
{
__tegra_move_framebuffer(NULL, to, from, size);
}