diff options
author | Colin Cross <ccross@android.com> | 2011-04-07 14:41:08 -0700 |
---|---|---|
committer | Dan Willemsen <dwillemsen@nvidia.com> | 2013-09-14 00:47:39 -0700 |
commit | e2f66c2e24c5d03766e265356b8bd68ce97108f0 (patch) | |
tree | 6098c97d74dcb2b80024938d6cf6987198849a68 | |
parent | a01a9024fecb79da653f22a269ae56628dfaae9d (diff) |
ARM: tegra: common: remove duplicated tegra_reserve
Change-Id: I9ac691e7abbc85398dcc1e4dcd8dd1d97c2abec6
Rebase-Id: R45a0f3e7898450b081162c7ddbaee28341a873cb
-rw-r--r-- | arch/arm/mach-tegra/common.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/arch/arm/mach-tegra/common.c b/arch/arm/mach-tegra/common.c index bc4a3233e663..f347a5f970b3 100644 --- a/arch/arm/mach-tegra/common.c +++ b/arch/arm/mach-tegra/common.c @@ -150,19 +150,6 @@ static int __init tegra_lp0_vec_arg(char *options) } early_param("lp0_vec", tegra_lp0_vec_arg); -void __init tegra_reserve(void) -{ - if (tegra_lp0_vec_size) - if (memblock_reserve(tegra_lp0_vec_start, tegra_lp0_vec_size)) - pr_err("Failed to reserve lp0_vec %08lx@%08lx\n", - tegra_lp0_vec_size, tegra_lp0_vec_start); - - pr_info("Tegra reserved memory:\n" - "LP0: %08lx - %08lx\n", - tegra_lp0_vec_start, - tegra_lp0_vec_start + tegra_lp0_vec_size - 1); -} - static int __init tegra_bootloader_fb_arg(char *options) { char *p = options; |